Acquia · Schema

Error

error schema from Acquia Cloud API

ContentExperience

Properties

Name Type Description
error string The error summary.
message string The long description for the returned error.
View JSON Schema on GitHub

JSON Schema

acquia-cloud-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acquia/refs/heads/main/json-schema/acquia-cloud-error-schema.json",
  "title": "Error",
  "description": "error schema from Acquia Cloud API",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "The error summary."
    },
    "message": {
      "type": "string",
      "description": "The long description for the returned error."
    }
  },
  "required": [
    "error",
    "message"
  ]
}