Microsoft Azure · Schema
AccountModel
Cognitive Services account model.
API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
Properties
| Name | Type | Description |
|---|---|---|
| format | string | Model format. |
| name | string | Model name. |
| version | string | Model version. |
| source | string | Source of the model. |
| maxCapacity | integer | The maximum capacity. |
| capabilities | object | Model capabilities. |
| deprecation | object | Deprecation information. |
| lifecycleStatus | string | Model lifecycle status. |
| systemData | object |
JSON Schema
{
"$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"
}
}
}