Status

The Status type defines a logical error model that is suitable for REST APIs. It is used to communicate error details from the API.

API ManagementCloud ComputingInfrastructurePlatform as a Service

Properties

Name Type Description
code integer The status code, which should be an enum value of google.rpc.Code.
message string A developer-facing error message in English.
details array A list of messages that carry the error details.
View JSON Schema on GitHub

JSON Schema

cloud-resource-manager-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Status",
  "type": "object",
  "description": "The Status type defines a logical error model that is suitable for REST APIs. It is used to communicate error details from the API.",
  "properties": {
    "code": {
      "type": "integer",
      "description": "The status code, which should be an enum value of google.rpc.Code."
    },
    "message": {
      "type": "string",
      "description": "A developer-facing error message in English."
    },
    "details": {
      "type": "array",
      "description": "A list of messages that carry the error details."
    }
  }
}