|
8 | 8 | @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . |
9 | 9 | @base <https://w3id.org/pmd/co/test/shape6#> . |
10 | 10 |
|
| 11 | + |
| 12 | +@prefix identifier: <http://purl.obolibrary.org/obo/IAO_0020000> . |
| 13 | +@prefix exists_at: <http://purl.obolibrary.org/obo/BFO_0000108> . |
| 14 | +@prefix temporal_region: <http://purl.obolibrary.org/obo/BFO_0000008> . |
| 15 | +@prefix has_first_instant: <http://purl.obolibrary.org/obo/BFO_0000222> . |
| 16 | +@prefix has_last_instant: <http://purl.obolibrary.org/obo/BFO_0000224> . |
| 17 | +@prefix inXSDDateTime: <http://www.w3.org/2006/time#inXSDDateTime> . |
| 18 | +@prefix temporal_instant: <http://purl.obolibrary.org/obo/BFO_0000203> . |
| 19 | +@prefix has_value: <https://w3id.org/pmd/co/PMD_0000006> . |
| 20 | +@prefix denoted_by: <http://purl.obolibrary.org/obo/IAO_0000235> . |
| 21 | +@prefix symbol: <http://purl.obolibrary.org/obo/IAO_0000028> . |
| 22 | +@prefix textual_entity: <http://purl.obolibrary.org/obo/IAO_0000300> . |
| 23 | +@prefix specified_output_of: <http://purl.obolibrary.org/obo/OBI_0000312> . |
| 24 | +@prefix realizes: <http://purl.obolibrary.org/obo/BFO_0000055> . |
| 25 | + |
11 | 26 | <https://w3id.org/pmd/co/test/shape6> rdf:type owl:Ontology ; |
12 | 27 | owl:versionIRI <https://w3id.org/pmd/co/test/shape6/3.0.0> . |
13 | 28 |
|
14 | 29 |
|
15 | | -################################################################# |
16 | | -# Individuals |
17 | | -################################################################# |
18 | | - |
19 | | -### https://w3id.org/pmd/co/test/shape6#device1 |
20 | 30 | :device1 rdf:type owl:NamedIndividual , |
21 | 31 | <https://w3id.org/pmd/co/PMD_0000602> ; |
22 | | - obo:IAO_0000235 :device1_identifier . |
| 32 | + denoted_by: :device1_identifier . |
23 | 33 |
|
24 | 34 |
|
25 | | -### https://w3id.org/pmd/co/test/shape6#device1_identifier |
26 | 35 | :device1_identifier rdf:type owl:NamedIndividual , |
27 | | - obo:IAO_0020000 ; |
28 | | - obo:OBI_0001938 :device1_identifier_value . |
29 | | - |
30 | | -:device1_identifier <http://purl.obolibrary.org/obo/OBI_0000312> :some_process . |
| 36 | + identifier: ; |
| 37 | + has_value: "literal_id_of_device1" . |
31 | 38 |
|
32 | | - |
33 | | -### https://w3id.org/pmd/co/test/shape6#device1_identifier_value |
34 | | -:device1_identifier_value rdf:type owl:NamedIndividual , |
35 | | - obo:OBI_0001933 ; |
36 | | - obo:OBI_0002135 "literal_id_of_device1" . |
| 39 | +:device1_identifier specified_output_of: :some_process . |
37 | 40 |
|
38 | 41 |
|
39 | 42 | ### https://w3id.org/pmd/co/test/shape6#device2 |
40 | 43 | :device2 rdf:type owl:NamedIndividual , |
41 | 44 | <https://w3id.org/pmd/co/PMD_0000602> ; |
42 | | - obo:IAO_0000235 :device2_identifier . |
| 45 | + denoted_by: :device2_identifier ; |
| 46 | + denoted_by: :device2_name1 ; |
| 47 | + denoted_by: :device2_name2 . |
43 | 48 |
|
44 | 49 |
|
45 | 50 | ### https://w3id.org/pmd/co/test/shape6#device2_identifier |
46 | 51 | :device2_identifier rdf:type owl:NamedIndividual , |
47 | | - obo:IAO_0000028 ; |
48 | | - obo:OBI_0001938 :device2_identifier_value . |
| 52 | + symbol: ; |
| 53 | + has_value: "literal_id_of_device2" . |
| 54 | + |
| 55 | +:device2_name1 rdf:type owl:NamedIndividual , |
| 56 | + textual_entity: ; |
| 57 | + has_value: "name1 of device2" ; |
| 58 | + exists_at: :some_temporal_region1 . |
| 59 | + |
| 60 | +:some_temporal_region1 a temporal_region: . |
| 61 | +:some_temporal_region1 has_last_instant: :some_instant . |
| 62 | + |
| 63 | + |
| 64 | +:device2_name2 rdf:type owl:NamedIndividual , |
| 65 | + textual_entity: ; |
| 66 | + has_value: "name2 of device2"; |
| 67 | + exists_at: :some_temporal_region2 . |
| 68 | + |
| 69 | +:some_temporal_region2 a temporal_region: . |
| 70 | +:some_temporal_region2 has_first_instant: :some_instant . |
| 71 | + |
| 72 | +:some_instant inXSDDateTime: "2026-10-10T12:34:56Z"^^xsd:dateTimeStamp ; a temporal_instant:. |
| 73 | + |
| 74 | + |
| 75 | + |
| 76 | +:device2_identifier specified_output_of: :some_process . |
| 77 | +:some_process realizes: :some_plan . |
| 78 | + |
49 | 79 |
|
50 | | -:device2_identifier <http://purl.obolibrary.org/obo/OBI_0000312> :some_process . |
51 | 80 |
|
52 | 81 |
|
53 | | -### https://w3id.org/pmd/co/test/shape6#device2_identifier_value |
54 | | -:device2_identifier_value rdf:type owl:NamedIndividual , |
55 | | - obo:OBI_0001933 ; |
56 | | - obo:OBI_0002135 "literal_id_of_device2" . |
57 | 82 |
|
58 | | -:some_process <http://purl.obolibrary.org/obo/BFO_0000055> :some_plan . |
59 | 83 |
|
60 | 84 |
|
61 | 85 | ### Generated by the OWL API (version 4.5.26.2023-07-17T20:34:13Z) https://github.com/owlcs/owlapi |
0 commit comments