{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-schema/amazon-codepipeline-error-details-schema.json", "title": "ErrorDetails", "description": "Represents information about an error in CodePipeline.", "type": "object", "properties": { "code": { "allOf": [ { "$ref": "#/components/schemas/Code" }, { "description": "The system ID or number code of the error." } ] }, "message": { "allOf": [ { "$ref": "#/components/schemas/Message" }, { "description": "The text of the error message." } ] } } }