{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AccountModel", "title": "AccountModel", "type": "object", "description": "Cognitive Services account model.", "properties": { "format": { "type": "string", "description": "Model format.", "example": "example_value" }, "name": { "type": "string", "description": "Model name.", "example": "Example Title" }, "version": { "type": "string", "description": "Model version.", "example": "example_value" }, "source": { "type": "string", "description": "Source of the model.", "example": "example_value" }, "maxCapacity": { "type": "integer", "description": "The maximum capacity.", "example": 10 }, "capabilities": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Model capabilities.", "example": "example_value" }, "deprecation": { "type": "object", "description": "Deprecation information.", "properties": { "fineTune": { "type": "string", "format": "date-time" }, "inference": { "type": "string", "format": "date-time" } }, "example": "example_value" }, "lifecycleStatus": { "type": "string", "enum": [ "GenerallyAvailable", "Preview" ], "description": "Model lifecycle status.", "example": "GenerallyAvailable" }, "systemData": { "type": "object", "readOnly": true, "properties": { "createdBy": { "type": "string" }, "createdByType": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "lastModifiedBy": { "type": "string" }, "lastModifiedByType": { "type": "string" }, "lastModifiedAt": { "type": "string", "format": "date-time" } }, "example": "example_value" } } }