ErrorResponse

Standard error response body

CreativeDesignGraphicsPhotographyVideo

Properties

Name Type Description
code string Machine-readable error code
message string Human-readable description of the error
requestId string Unique identifier for the failed request, for support purposes
View JSON Schema on GitHub

JSON Schema

adobe-creative-suite-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "Standard error response body",
  "properties": {
    "code": {
      "type": "string",
      "description": "Machine-readable error code",
      "example": "example_value"
    },
    "message": {
      "type": "string",
      "description": "Human-readable description of the error",
      "example": "example_value"
    },
    "requestId": {
      "type": "string",
      "description": "Unique identifier for the failed request, for support purposes",
      "example": "asset_abc123"
    }
  }
}