-
Notifications
You must be signed in to change notification settings - Fork 14
/
audience.json
47 lines (47 loc) · 1.32 KB
/
audience.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
{
"$id": "https://dini-ag-kim.github.io/lrmi-profile/draft/schemas/audience.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Intended Audience",
"description": "The audience the educational resource is intended for.",
"type": "array",
"items": {
"type": "object",
"_widget": {
"type": "SkohubLookup",
"options": {
"url": "https://skohub.io/acka47/lrmi-audience-role/heads/master/purl.org/dcx/lrmi-vocabs/educationalAudienceRole/"
}
},
"properties": {
"type": {
"type": "string",
"enum": [
"Concept"
]
},
"id": {
"type": "string",
"format": "uri"
},
"inScheme": {
"type": "object",
"properties": {
"id": {
"type": "string",
"enum": [
"http://purl.org/dcx/lrmi-vocabs/educationalAudienceRole/"
]
}
}
},
"prefLabel": {
"title": "The preferred label of the concept",
"description": "A localized string for prefLabel of a SKOS concept",
"$ref": "https://dini-ag-kim.github.io/lrmi-profile/draft/schemas/LocalizedString.json"
}
},
"required": [
"id"
]
}
}