# Funder-schema.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "Funder",
    "description": "Funder schema",
    "dataTypes": null,
    "type": "object",
    "properties": {
        "name": {
            "type": "string",
            "description": "Funder name"
        },
        "funderId": {
            "type": "string",
            "description": "Funder identifier"
        },
        "idType": {
            "type": "string",
            "description": "Identification system"
        }
    },
    "required": [
        "name",
        "idType"
    ]
}