Open
Description
The rationale is the following (adapted from this message):
{
"@context": [
"https://schema.org/",
{ "ex": "http://example.com/" }
],
"@id": "ex:bob",
"ex:captain": {
"@id": "ex:bowls_club",
"@annotation": {
"ex:realization": {
"@type": "Event",
"startDate": "01-01-2021",
"endDate": "31-12-2021"
}
}
}
}
Since "ex:realization" is expected to be used exclusively as an annotation, one might want to write:
{
"@context": [
"https://schema.org/",
{ "ex": "http://example.com/",
"realization": { "@annotation": "ex:realization" } }
],
"@id": "ex:bob",
"ex:captain": {
"@id": "ex:bowls_club",
"realization": {
"@type": "Event",
"startDate": "01-01-2021",
"endDate": "31-12-2021"
}
}
}
This would be homogeneous to how @rev
works in terms definition.
edited: the initial proposal (and title) was a mistake (and there was a bug in the 2nd example)
Metadata
Metadata
Assignees
Labels
No labels