-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
51 lines (51 loc) · 1.87 KB
/
schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"@context": {
"xsd": "http://www.w3.org/2001/XMLSchema#",
"owl": "http://www.w3.org/2002/07/owl#",
"shacl": "http://www.w3.org/ns/shacl#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"label": "rdfs:label",
"dcterms": "http://purl.org/dc/elements/1.1/",
"description": "dcterms:description",
"path": { "@id": "shacl:path", "@type": "@id" },
"maxCount": { "@id": "shacl:maxCount", "@type": "xsd:integer" },
"minCount": { "@id": "shacl:minCount", "@type": "xsd:integer" },
"name": { "@id": "shacl:name", "@type": "xsd:string" },
"shacl:description": { "@type": "xsd:string" },
"subClassOf": { "@id": "rdfs:subClassOf", "@type": "@id" },
"closed": { "@id": "shacl:closed", "@type": "xsd:boolean" },
"property": { "@id": "shacl:property", "@type": "@id" },
"datatype": { "@id": "shacl:datatype", "@type": "@id" },
"shacl:datatype": { "@type": "xsd:string" }
},
"@id": "https://standardknowledge.com/ontologies/core/Noun",
"@type": ["owl:Class", "shacl:NodeShape"],
"label": "Noun",
"description": "A data structure representing a concept commonly used by software tools.",
"closed": false,
"property": [
{
"maxCount": 1,
"minCount": 1,
"name": "label",
"path": "rdfs:label",
"datatype": "xsd:string",
"shacl:description": "A human readable identifier for this Noun."
},
{
"maxCount": 1,
"name": "description",
"path": "dcterms:description",
"datatype": "xsd:string",
"shacl:description": "A description of what this Noun represents."
},
{
"maxCount": 1,
"name": "context",
"path": "skl:context",
"datatype": "rdf:JSON",
"shacl:description": "A JSON-LD Context Definition used to compact entities of this noun into a more human readable format"
}
]
}