This repository was archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEntity.slot_jsonschema.json
More file actions
122 lines (122 loc) · 2.59 KB
/
Entity.slot_jsonschema.json
File metadata and controls
122 lines (122 loc) · 2.59 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"@context": {
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"owl": "http://www.w3.org/2002/07/owl#",
"skos": "https://www.w3.org/TR/skos-reference/",
"dcterms": "http://purl.org/dc/terms/",
"schema": "https://schema.org/",
"sentier": "https://oo-ld.github.io/glossary-api/",
"type": "@type",
"iri": "@id",
"labels": {
"@id": "skos:prefLabel",
"@context": {
"text": "@value",
"lang": "@language"
}
},
"version": "owl:versionInfo",
"previous_version": "owl:priorVersion",
"documentation": "rdfs:seeAlso",
"source": "rdfs:isDefinedBy",
"licence": "dcterms:license",
"authors": {
"@id": "dcterms:creator",
"@context": {
"name": "schema:name"
}
}
},
"title": "Entity",
"type": "object",
"required": [
"labels"
],
"properties": {
"type": {
"type": "string",
"default": "sentier:Entity"
},
"iri": {
"type": "string",
"title": "IRI"
},
"labels": {
"type": "array",
"format": "table",
"title": "Label(s)",
"description": "Label(s) of the entity",
"items": {
"type": "object",
"title": "Label",
"properties": {
"text": {
"type": "string",
"minlength": 1
},
"lang": {
"type": "string",
"enum": [
"en",
"de",
"fr"
],
"options": {
"input_width": "100px"
}
}
}
},
"default": [
{
"text": "Unnamed",
"lang": "en"
}
],
"minItems": 1
},
"version": {
"type": "string",
"title": "version",
"default": "1.0.0"
},
"previous_version": {
"type": "string",
"title": "Previous Version IRI"
},
"documentation": {
"type": "string",
"title": "Documentation"
},
"source": {
"type": "string",
"title": "Source / external definition"
},
"licence": {
"type": "string",
"enum": [
"https://creativecommons.org/public-domain/cc0/",
"https://creativecommons.org/licenses/by/4.0/"
],
"options": {
"enum_titles": [
"CC0",
"CC-BY"
]
}
},
"authors": {
"type": "array",
"format": "table",
"title": "Authors",
"items": {
"properties": {
"name": {
"type": "string"
}
}
}
}
}
}