{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-schema/amazon-codedeploy-error-information-schema.json", "title": "ErrorInformation", "description": "Information about a deployment error.", "type": "object", "properties": { "code": { "allOf": [ { "$ref": "#/components/schemas/ErrorCode" }, { "description": "

For more information, see Error Codes for CodeDeploy in the CodeDeploy User Guide.

The error code:

" } ] }, "message": { "allOf": [ { "$ref": "#/components/schemas/ErrorMessage" }, { "description": "An accompanying error message." } ] } } }