Microsoft Azure · Schema

AcrErrorInfo

Error information.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
code string Error code.
message string Error message.
detail object Error details.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-acrerrorinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AcrErrorInfo",
  "title": "AcrErrorInfo",
  "type": "object",
  "description": "Error information.",
  "properties": {
    "code": {
      "type": "string",
      "description": "Error code.",
      "example": "example_value"
    },
    "message": {
      "type": "string",
      "description": "Error message.",
      "example": "example_value"
    },
    "detail": {
      "type": "object",
      "description": "Error details.",
      "example": "example_value"
    }
  }
}