Azure Virtual Machines · Schema
ApiError
Api error.
Cloud ComputingComputeIaaSInfrastructureVirtual Machines
Properties
| Name | Type | Description |
|---|---|---|
| code | string | The error code. |
| message | string | The error message. |
| target | string | The target of the particular error. |
| details | array | The Api error details. |
| innererror | object | The Api inner error. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiError",
"title": "ApiError",
"type": "object",
"description": "Api error.",
"properties": {
"code": {
"type": "string",
"description": "The error code."
},
"message": {
"type": "string",
"description": "The error message."
},
"target": {
"type": "string",
"description": "The target of the particular error."
},
"details": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApiErrorBase"
},
"description": "The Api error details."
},
"innererror": {
"type": "object",
"description": "The Api inner error.",
"properties": {
"exceptiontype": {
"type": "string",
"description": "The exception type."
},
"errordetail": {
"type": "string",
"description": "The internal error message or exception dump."
}
}
}
}
}