{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/dassault/json-schema/400_accreditations_search.json", "title": "400 Accreditations Search", "type": "object", "description": "Response body returned when the accreditation search request fails.", "properties": { "data": { "type": "array", "description": "Always an empty array in case of error responses.", "maxItems": 0, "items": {}, "example": [] }, "info": { "$ref": "#/components/schemas/info" }, "error": { "$ref": "#/components/schemas/error" } }, "required": [ "info", "data", "error" ] }