Skip to main content
Version: Live

OpenDI JSON Schema

The current working draft of the OpenDI JSON Schema.
The view below provides a more accessible browsing experience, but if you'd prefer to view the source, see the source display below, or view the original source.

Schema Docs

Loading ....

Source

OpenDI JSON Schema -- Source
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "ODI-CDM-v0.0-alpha-0824",
"title": "Causal Decision Model",
"description": "(DRAFT) -- Represents a Causal Decision Model for OpenDI-compliant software.",
"properties": {
"$schema": {
"title": "JSON Schema URI",
"description": "URI for schema, used for validation. Likely a URL to the public source file for this schema.",
"type": "string"
},
"meta": {
"title": "Asset Metadata",
"description": "Metadata shared by all DI Assets",
"$ref": "./DI-Asset.json"
},
"evaluatables": {
"title": "Evaluatable Decision Models",
"description": "The evaluatable model (or set of model fragments) used for computing or simulating this CDM.",
"type": "array",
"items": {
"$ref": "./DI-Evaluatable.json"
}
},
"diagrams": {
"title": "Model Diagram List",
"description": "List of diagrams (likely Causal Decision Diagrams) associated with this model.",
"type": "array",
"items": {
"$ref": "./DI-Diagram.json"
}
},
"addons": {
"title": "Addon Data",
"description": "Object containing data for various addons.",
"$ref": "./DI-Addons.json"
}
},
"required": [
"meta"
],
"additionalProperties": false
}