# SoftwareValorisation-schema.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "SoftwareValorisation",
    "description": "SoftwareValorisation schema",
    "dataTypes": [
        "software"
    ],
    "type": "object",
    "properties": {
        "softwarePublication": {
            "type": "array",
            "items": {
                "type": "object",
                "$comment": "class=ResourceReference",
                "properties": {
                    "dbid": {
                        "type": "number"
                    }
                },
                "required": [
                    "dbid"
                ]
            },
            "description": "Scientific publications describing the software"
        },
        "resourceReference": {
            "type": "array",
            "items": {
                "type": "object",
                "$comment": "class=ResourceReference",
                "properties": {
                    "dbid": {
                        "type": "number"
                    }
                },
                "required": [
                    "dbid"
                ]
            },
            "description": "References  to scientific publications related to the software"
        }
    },
    "required": []
}