-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.json
49 lines (49 loc) · 1.78 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
{
"@context": {
"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#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"owl": "http://www.w3.org/2002/07/owl#",
"skl": "https://standardknowledge.com/ontologies/core/",
"label": "rdfs:label",
"subClassOf": { "@id": "rdfs:subClassOf", "@type": "@id" },
"dcterms": "http://purl.org/dc/elements/1.1/",
"description": "dcterms:description",
"path": { "@id": "shacl:path", "@type": "@id" },
"nodeKind": { "@id": "shacl:nodeKind", "@type": "@id" },
"class": { "@id": "shacl:class", "@type": "@id" },
"datatype": { "@id": "shacl:datatype", "@type": "@id" },
"maxCount": { "@id": "shacl:maxCount", "@type": "xsd:nteger" },
"minCount": { "@id": "shacl:minCount", "@type": "xsd:integer" },
"name": { "@id": "shacl:name", "@type": "xsd:string" },
"closed": { "@id": "shacl:closed", "@type": "xsd:boolean" },
"property": { "@id": "shacl:property", "@type": "@id" }
},
"@graph": [
{
"@id": "https://standardknowledge.com/ontologies/core/OpenApiDescription",
"@type": ["owl:Class", "shacl:NodeShape", "skl:Noun"],
"label": "OpenAPI Description",
"description": "An object holding the OpenAPI description of an Integration's API.",
"closed": false,
"property": [
{
"class": "skl:Integration",
"maxCount": 1,
"minCount": 1,
"nodeKind": "shacl:IRI",
"path": "skl:integration",
"name": "integration"
},
{
"maxCount": 1,
"minCount": 1,
"path": "skl:openApiDescription",
"name": "openApiDescription",
"datatype": "rdf:JSON"
}
]
}
]
}