# Person-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "Person",
"description": "Person schema",
"dataTypes": null,
"type": "object",
"properties": {
"nameType": {
"type": "string",
"description": "Name type"
},
"lastName": {
"type": "string",
"description": "Last name (family name)"
},
"firstName": {
"type": "string",
"description": "First name (given name)"
},
"mbox": {
"type": "string",
"format": "email",
"description": "Email address"
},
"personId": {
"type": "string",
"description": "Person identifier"
},
"idType": {
"type": "string",
"description": "Identification system"
},
"affiliationName": {
"type": "string",
"description": "Affiliation name"
},
"affiliationId": {
"type": "string",
"description": "Affiliation identifier"
},
"affiliationIdType": {
"type": "string",
"description": "Identification system"
}
},
"required": [
"nameType",
"lastName",
"firstName",
"personId",
"idType",
"affiliationName",
"affiliationId",
"affiliationIdType"
]
}