{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LearningModelDetail", "title": "LearningModelDetail", "type": "object", "description": "Detailed model information", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "author": { "type": "string" }, "domain": { "type": "string" }, "description": { "type": "string" }, "version": { "type": "integer" }, "inputFeatures": { "type": "array", "items": { "$ref": "#/components/schemas/FeatureDescriptor" } }, "outputFeatures": { "type": "array", "items": { "$ref": "#/components/schemas/FeatureDescriptor" } }, "metadata": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Key-value metadata from the ONNX model" } } }