-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from casework/existence_intervals
Add existence intervals instance data for external-to-UCO ontologies
- Loading branch information
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
examples/illustrations/existence_intervals/src/existence_intervals-time.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[ | ||
{ | ||
"@id": "kb:TimeBoundThing-b1fd892f-f190-4e15-a928-6c949867c59d", | ||
"@type": "owl:Thing", | ||
"rdfs:label": "T", | ||
"rdfs:comment": "A thing with a time-bounded existence.", | ||
"time:hasTime": { | ||
"@id": "kb:ExistenceInterval-27802c47-1c75-43fa-ab4b-fc01aa6c2c92" | ||
} | ||
}, | ||
{ | ||
"@id": "kb:ExistenceInterval-27802c47-1c75-43fa-ab4b-fc01aa6c2c92", | ||
"@type": "time:Interval", | ||
"rdfs:label": "E", | ||
"rdfs:comment": "The existence interval of T.", | ||
"time:hasBeginning": { | ||
"@id": "kb:Instant-9c248bb3-ea05-4ef0-9ac7-b68a99d5c07a" | ||
}, | ||
"time:hasEnd": { | ||
"@id": "kb:Instant-531377bb-8e8e-4648-bc61-01942dfe6b0b" | ||
} | ||
}, | ||
{ | ||
"@id": "kb:Instant-9c248bb3-ea05-4ef0-9ac7-b68a99d5c07a", | ||
"@type": "time:Instant", | ||
"rdfs:label": "T0", | ||
"rdfs:comment": "The instant that is the beginning of E.", | ||
"time:inXSDDateTimeStamp": { | ||
"@type": "xsd:dateTimeStamp", | ||
"@value": "2020-01-02T03:04:05.6789Z" | ||
} | ||
}, | ||
{ | ||
"@id": "kb:Instant-531377bb-8e8e-4648-bc61-01942dfe6b0b", | ||
"@type": "time:Instant", | ||
"rdfs:label": "T1", | ||
"rdfs:comment": "The instant that is the end of E.", | ||
"time:inXSDDateTimeStamp": { | ||
"@type": "xsd:dateTimeStamp", | ||
"@value": "2021-02-03T04:05:06.7890Z" | ||
} | ||
} | ||
] |