# MetadataStandard-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "MetadataStandard",
"description": "MetadataStandard schema",
"dataTypes": null,
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Metadata standard name"
},
"description": {
"type": "string",
"description": "Description of the model or vocabulary chosen to represent the metadata or data"
},
"metadataLanguage": {
"type": "string",
"length": "3",
"description": "Metadata language code"
},
"metadataStandardId": {
"type": "string",
"description": "Metadata, data, or vocabulary standard identifier"
},
"idType": {
"type": "string",
"description": "Identification system"
}
},
"required": [
"name",
"metadataLanguage",
"metadataStandardId",
"idType",
"metadataLanguage"
]
}