Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 17 additions & 8 deletions jsonschema/definitions/Catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,16 @@
"keyword": {
"$id": "http://www.w3.org/ns/dcat#keyword",
"title": "keyword/tag",
"description": "A keyword or tag describing the resource.",
"description": "A list of keywords or tags describing the resource.",
"oneOf": [
{
"type": "null"
},
{
"type": "string"
"type": "array",
"items": {
"type": "string"
}
}
]
},
Expand Down Expand Up @@ -283,7 +286,10 @@
"$id": "http://purl.org/dc/terms/description",
"title": "description",
"description": "Free-text description of the catalog (in the language indicated in the attribute).",
"type": "string"
"type": [
"null",
"string"
]
},
"descriptionMap": {
"$id": "http://purl.org/dc/terms/description_lang_map",
Expand Down Expand Up @@ -442,6 +448,9 @@
"title": "publisher",
"description": "Entity responsible for making the catalog available.",
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/definitions/Agent",
"description": "inline description of Agent"
Expand Down Expand Up @@ -584,7 +593,10 @@
"$id": "http://purl.org/dc/terms/title",
"title": "title",
"description": "The title of the catalog in the indicated language",
"type": "string"
"type": [
"null",
"string"
]
},
"titleMap": {
"$id": "http://purl.org/dc/terms/title_lang_map",
Expand Down Expand Up @@ -668,9 +680,6 @@
}
},
"required": [
"dataset",
"description",
"publisher",
"title"
"dataset"
]
}
Loading