Microsoft Azure · Schema

ModelListResponse

Response listing available models.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
object string
data array
View JSON Schema on GitHub

JSON Schema

microsoft-azure-modellistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelListResponse",
  "title": "ModelListResponse",
  "type": "object",
  "description": "Response listing available models.",
  "properties": {
    "object": {
      "type": "string",
      "enum": [
        "list"
      ],
      "example": "list"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Model"
      },
      "example": []
    }
  },
  "required": [
    "object",
    "data"
  ]
}