# DependencyReference-schema.json

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "../Documentation/Implementation/data_model/Json/",
    "title": "DependencyReference",
    "description": "DependencyReference schema",
    "dataTypes": [
        "software"
    ],
    "type": "object",
    "properties": {
        "title": {
            "type": "string",
            "description": "Dependency Name"
        },
        "version": {
            "type": "string",
            "description": "Dependency version"
        },
        "dependencyUrl": {
            "type": "string",
            "format": "url",
            "description": "Dependency URL"
        }
    },
    "required": [
        "title",
        "version",
        "dependencyUrl"
    ]
}