forked from project-open-data/project-open-data.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganization.json
29 lines (29 loc) · 818 Bytes
/
organization.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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://project-open-data.cio.gov/v1.1/schema/organization.json#",
"title": "Project Open Data Organization",
"description": "A Dataset Publisher Organization as a foaf:Agent object",
"type": "object",
"required": [
"name"
],
"properties": {
"@type": {
"title": "Metadata Context",
"description": "IRI for the JSON-LD data type. This should be org:Organization for each publisher",
"enum": [
"org:Organization"
]
},
"name": {
"title": "Publisher Name",
"description": "A full formatted name, eg Firstname Lastname",
"type": "string",
"minLength": 1
},
"subOrganizationOf": {
"title": "Parent Organization",
"$ref": "organization.json"
}
}
}