{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/akamai/main/json-schema/siem-problem-schema.json", "title": "problem", "additionalProperties": true, "description": "Encapsulates debugging information for error responses.", "properties": { "detail": { "description": "Detail error message.", "type": "string" }, "errors": { "description": "Further nested problem objects describing individual errors.", "items": { "description": "A further-nested problem object.", "type": "object", "x-akamai": { "file-path": "schemas/problem-nested.yaml" } }, "type": "array" }, "instance": { "description": "The non-referenceable URI for the error instance.", "example": "https://problems.luna.akamaiapis.net/siem/error-instances/d54686b5-21cb-4ab7-a8d6-a92282cf1749", "type": "string" }, "status": { "description": "HTTP status code.", "example": 404, "type": "integer" }, "title": { "description": "Title for the error.", "example": "Not Found", "type": "string" }, "type": { "description": "URL for the error type.", "example": "https://problems.luna.akamaiapis.net/siem/error-types/NOT-FOUND", "type": "string" } }, "required": [ "type", "title" ], "type": "object", "x-akamai": { "file-path": "schemas/problem.yaml" } }