Error

Error response from OCI API.

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
code string A short error code.
message string A human-readable error message.
status integer HTTP status code.
View JSON Schema on GitHub

JSON Schema

oracle-cloud-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "description": "Error response from OCI API.",
  "properties": {
    "code": {
      "type": "string",
      "description": "A short error code.",
      "example": "NotAuthorizedOrNotFound"
    },
    "message": {
      "type": "string",
      "description": "A human-readable error message.",
      "example": "Authorization failed or requested resource not found."
    },
    "status": {
      "type": "integer",
      "description": "HTTP status code.",
      "example": 404
    }
  }
}