# DMPResearchEntity-template.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "DMPResearchEntity",
    "description": "DMPResearchEntity template",
    "dataTypes": [
        "software",
        "none"
    ],
    "type": "object",
    "class": "DMPResearchEntity",
    "properties": {
        "identifier": {
            "type": "number",
            "description": "Local identifier",
            "tooltip": null
        },
        "meta": {
            "type": "object",
            "class": "Meta",
            "properties": {
                "dbid": {
                    "type": "number"
                }
            },
            "template_name": "MetaStandard",
            "required": [
                "dbid"
            ],
            "description": "Details about the data management plan",
            "label@fr_FR": "Métadonnées du plan",
            "label@en_GB": "Plan Metadata",
            "tooltip": null,
            "form_label@fr_FR": "Métadonnées du plan",
            "form_label@en_GB": "Plan Metadata"
        },
        "researchOutput": {
            "type": "array",
            "table_header": null,
            "items": {
                "type": "object",
                "class": "ResearchOutput",
                "properties": {
                    "dbid": {
                        "type": "number"
                    }
                },
                "template_name": "ResearchOutputStandard",
                "required": [
                    "dbid"
                ]
            },
            "minItems": 1,
            "description": "Comprehensive information on research outputs produced by the research entity",
            "tooltip": null
        },
        "budget": {
            "type": "object",
            "class": "Budget",
            "properties": {
                "dbid": {
                    "type": "number"
                }
            },
            "template_name": "BudgetStandard",
            "required": [
                "dbid"
            ],
            "description": "Represents information on data management budget items not directly associated with a research product. This class supports the retrieval of such information when importing a Data Management Plan (DMP) compliant with the RDA DMP Common Standard",
            "tooltip": null
        },
        "researchEntity": {
            "type": "object",
            "class": "ResearchEntity",
            "properties": {
                "dbid": {
                    "type": "number"
                }
            },
            "template_name": "ResearchEntityStandard",
            "required": [
                "dbid"
            ],
            "description": "Comprehensive information describing the entity",
            "label@fr_FR": "Renseignements sur l'entité de recherche",
            "label@en_GB": "Research Entity Details",
            "tooltip": null,
            "form_label@fr_FR": "Renseignements sur l'entité de recherche",
            "form_label@en_GB": "Research entity Details"
        }
    },
    "required": [
        "identifier",
        "meta",
        "researchOutput",
        "budget",
        "researchEntity"
    ],
    "to_string": []
}