{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/apiCollection404ErrorNotFound", "title": "API Collection Not Found", "type": "object", "properties": { "error": { "type": "object", "properties": { "type": { "type": "string", "description": "The type of error.", "example": "instanceNotFoundError" }, "title": { "type": "string", "description": "A short summary of the problem.", "example": "Collection not found" }, "detail": { "type": "string", "description": "Information about the error.", "example": "The API does not contain the collection you are looking for" } } } } }