An entity with a source ID and a URL
An Entity with a name, keyed by its source and sourceId.
{
"@type": "Entity",
"@key": ["@type", "source", "sourceId"],
"source": "example-notes",
"sourceId": "note-1042",
"name": "Seed order for spring",
"url": "https://notes.example.com/n/1042"
}{
"@context": {
"@vocab": "https://schema.chronicle.app/",
"doc": "https://schema.chronicle.app/docs/"
},
"@type": "Entity",
"doc:key": {
"@list": ["@type", "source", "sourceId"]
},
"source": "example-notes",
"sourceId": "note-1042",
"name": "Seed order for spring",
"url": "https://notes.example.com/n/1042"
}@prefix : <https://schema.chronicle.app/> .
@prefix doc: <https://schema.chronicle.app/docs/> .
[
a :Entity;
doc:key ("@type" "source" "sourceId");
:source "example-notes";
:sourceId "note-1042";
:name "Seed order for spring";
:url "https://notes.example.com/n/1042"
] .