# EthicalIssues-schema.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "EthicalIssues",
    "description": "EthicalIssues schema",
    "dataTypes": null,
    "type": "object",
    "properties": {
        "description": {
            "type": "string",
            "description": "Description of the measures taken to take into account ethical issues."
        },
        "resourceReference": {
            "type": "array",
            "items": {
                "type": "object",
                "$comment": "class=ResourceReference",
                "properties": {
                    "dbid": {
                        "type": "number"
                    }
                },
                "required": [
                    "dbid"
                ]
            },
            "description": "Identifier of a document related to the ethical aspects to be taken into account"
        },
        "contributor": {
            "type": "object",
            "$comment": "class=Contributor",
            "properties": {
                "dbid": {
                    "type": "number"
                }
            },
            "required": [
                "dbid"
            ],
            "description": "Person responsible for addressing the ethical aspects of a project."
        }
    },
    "required": [
        "description"
    ]
}