Details of an error.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorDetails", "title": "ErrorDetails", "description": "Details of an error.", "type": "object", "properties": { "key": { "type": "string", "description": "An application defined error code.", "example": "401" }, "message": { "type": "array", "description": "A message providing details about the error.", "items": { "$ref": "#/components/schemas/OperationError" } } } }