🔗 EntityRef represents a reference to an entity.
Used for linking telemetry data to external entities or systems. This is useful for correlating telemetry with external databases or systems.
const turtleEntityRef: EntityRef = { schemaUrl: "https://example.com/turtle-schema/v1", type: "turtle", idKeys: ["turtle.id", "turtle.owner"], descriptionKeys: ["turtle.name", "turtle.type"]}; Copy
const turtleEntityRef: EntityRef = { schemaUrl: "https://example.com/turtle-schema/v1", type: "turtle", idKeys: ["turtle.id", "turtle.owner"], descriptionKeys: ["turtle.name", "turtle.type"]};
Keys that provide human-readable description
Keys that uniquely identify this entity
URL to the schema defining this entity type
Type of the entity being referenced
🔗 EntityRef represents a reference to an entity.
Used for linking telemetry data to external entities or systems. This is useful for correlating telemetry with external databases or systems.
Example