{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Model",
    "description": "A system of postulates, data, and inferences presented as a mathematical description of an entity or state of affairs. For example, a machine learning model.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Entity"
        },
        {
            "properties": {
                "encrypted": {
                    "description": "Indicates whether the model is encrypted",
                    "type": "boolean",
                    "default": false
                }
            },
            "required": []
        }
    ]
}
