{ "$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" ] }