|
1 |
| -PREFIX cn: <https://linked.data.gov.au/def/cn/> |
2 |
| -PREFIX ex: <http://example.com/> |
3 | 1 | PREFIX geo: <http://www.opengis.net/ont/geosparql#>
|
4 | 2 | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
|
5 |
| -PREFIX sdo: <https://schema.org/> |
| 3 | +PREFIX schema: <https://schema.org/> |
6 | 4 | PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
|
7 | 5 |
|
8 |
| -ex:nicholas |
9 |
| - a sdo:Person ; |
10 |
| - sdo:age 41 ; |
11 |
| - sdo:alternateName |
12 |
| - "N.J. Car" , |
13 |
| - "Nick Car" , |
| 6 | +<http://example.com/nicholas> |
| 7 | + a schema:Person ; |
| 8 | + schema:age 41 ; |
| 9 | + schema:alternateName |
14 | 10 | [
|
15 |
| - sdo:name "Dr N.J. Car" ; |
16 |
| - ] ; |
17 |
| - sdo:name |
| 11 | + schema:name "Dr N.J. Car" ; |
| 12 | + ] , |
| 13 | + "N.J. Car" , |
| 14 | + "Nick Car" ; |
| 15 | + schema:name |
18 | 16 | [
|
19 |
| - a cn:CompoundName ; |
20 |
| - sdo:hasPart |
21 |
| - [ |
22 |
| - a cn:CompoundName ; |
23 |
| - rdf:value "John" ; |
24 |
| - ] , |
| 17 | + a <https://linked.data.gov.au/def/cn/CompoundName> ; |
| 18 | + schema:hasPart |
25 | 19 | [
|
26 |
| - a cn:CompoundName ; |
27 |
| - rdf:value "Nicholas" ; |
28 |
| - ] , |
29 |
| - [ |
30 |
| - a cn:CompoundName ; |
31 |
| - sdo:hasPart |
| 20 | + a <https://linked.data.gov.au/def/cn/CompoundName> ; |
| 21 | + schema:hasPart |
32 | 22 | [
|
33 |
| - a cn:CompoundName ; |
| 23 | + a <https://linked.data.gov.au/def/cn/CompoundName> ; |
34 | 24 | rdf:value "Car" ;
|
35 | 25 | ] ,
|
36 | 26 | [
|
37 |
| - a cn:CompoundName ; |
| 27 | + a <https://linked.data.gov.au/def/cn/CompoundName> ; |
38 | 28 | rdf:value "Maxov" ;
|
39 | 29 | ] ;
|
| 30 | + ] , |
| 31 | + [ |
| 32 | + a <https://linked.data.gov.au/def/cn/CompoundName> ; |
| 33 | + rdf:value "Nicholas" ; |
| 34 | + ] , |
| 35 | + [ |
| 36 | + a <https://linked.data.gov.au/def/cn/CompoundName> ; |
| 37 | + rdf:value "John" ; |
40 | 38 | ] ;
|
41 | 39 | ] ;
|
42 |
| - sdo:worksFor <https://kurrawong.ai> ; |
| 40 | + schema:worksFor <https://kurrawong.ai> ; |
43 | 41 | .
|
44 | 42 |
|
45 | 43 | <https://kurrawong.ai>
|
46 |
| - a sdo:Organization ; |
47 |
| - sdo:location <https://kurrawong.ai/hq> ; |
| 44 | + a schema:Organization ; |
| 45 | + schema:location <https://kurrawong.ai/hq> ; |
48 | 46 | .
|
49 | 47 |
|
50 | 48 | <https://kurrawong.ai/hq>
|
51 |
| - a sdo:Place ; |
52 |
| - sdo:address |
| 49 | + a schema:Place ; |
| 50 | + schema:address |
53 | 51 | [
|
54 |
| - a sdo:PostalAddress ; |
55 |
| - sdo:addressCountry |
| 52 | + a schema:PostalAddress ; |
| 53 | + schema:addressCountry |
56 | 54 | [
|
57 |
| - sdo:identifier "au" ; |
58 |
| - sdo:name "Australia" ; |
| 55 | + schema:identifier "au" ; |
| 56 | + schema:name "Australia" ; |
59 | 57 | ] ;
|
60 |
| - sdo:addressLocality "Shorncliffe" ; |
61 |
| - sdo:addressRegion "QLD" ; |
62 |
| - sdo:postalCode 4017 ; |
63 |
| - sdo:streetAddress ( |
| 58 | + schema:addressLocality "Shorncliffe" ; |
| 59 | + schema:addressRegion "QLD" ; |
| 60 | + schema:postalCode 4017 ; |
| 61 | + schema:streetAddress ( |
64 | 62 | 72
|
65 | 63 | "Yundah"
|
66 | 64 | "Street"
|
67 | 65 | ) ;
|
68 | 66 | ] ;
|
69 |
| - sdo:geo |
| 67 | + schema:geo |
70 | 68 | [
|
71 |
| - sdo:polygon "POLYGON((153.082403 -27.325801, 153.08241 -27.32582, 153.082943 -27.325612, 153.083010 -27.325742, 153.083543 -27.325521, 153.083456 -27.325365, 153.082403 -27.325801))"^^geo:wktLiteral ; |
| 69 | + schema:polygon "POLYGON((153.082403 -27.325801, 153.08241 -27.32582, 153.082943 -27.325612, 153.083010 -27.325742, 153.083543 -27.325521, 153.083456 -27.325365, 153.082403 -27.325801))"^^geo:wktLiteral ; |
72 | 70 | ] ;
|
73 |
| - sdo:name "KurrawongAI HQ" ; |
| 71 | + schema:name "KurrawongAI HQ" ; |
74 | 72 | .
|
0 commit comments