Acquia · JSON Structure

Acquia Cloud Error Structure

error schema from Acquia Cloud API

Type: object Properties: 2 Required: 2
ContentExperience

Error is a JSON Structure definition published by Acquia, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

error message

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/acquia/refs/heads/main/json-structure/acquia-cloud-error-structure.json",
  "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"
  ],
  "name": "Error"
}