# Partner-schema.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "../Documentation/Implementation/data_model/Json/",
"title": "Partner",
"description": "Partner schema",
"dataTypes": null,
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the partner"
},
"acronym": {
"type": "string",
"description": "Acronym of the partner"
},
"orgId": {
"type": "string",
"description": "Partner identifier"
},
"idType": {
"type": "string",
"description": "Identifier system (eg. ROR)"
},
"rnsr": {
"type": "string",
"description": "RNSR identifier (Identifier for French research structures)"
}
},
"required": [
"name"
]
}