{ "type": "object", "description": "Details about a specific error", "properties": { "message": { "type": "string", "example": "This is an example description." }, "code": { "type": "string", "example": "example-value" }, "subCategory": { "type": "string", "example": "standard" }, "in": { "type": "string", "example": "example-value" }, "context": { "type": "object", "example": { "key": "value" } } }, "required": [ "message" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ErrorDetail" }