{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PlatformDataDTO", "title": "PlatformDataDTO", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "locales": { "type": "array", "items": { "type": "string" } }, "maintenances": { "type": "array", "items": { "type": "object" } }, "incidents": { "type": "array", "items": { "type": "object" } } } }