# Contributor-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "Contributor",
"description": "Contributor schema",
"dataTypes": null,
"type": "object",
"properties": {
"person": {
"type": "object",
"$comment": "class=Person",
"properties": {
"dbid": {
"type": "number"
}
},
"required": [
"dbid"
],
"description": "Information on the person"
},
"role": {
"type": "string",
"description": "Role of the person in data management and/or production"
}
},
"required": [
"person",
"role"
]
}