{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JPD", "title": "JPD", "type": "object", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "url": { "type": "string", "format": "uri" }, "location": { "type": "object", "properties": { "city_name": { "type": "string" }, "country_code": { "type": "string" }, "latitude": { "type": "number" }, "longitude": { "type": "number" } } }, "status": { "type": "string", "enum": [ "online", "offline", "unavailable" ] }, "services": { "type": "array", "items": { "type": "object", "properties": { "service_type": { "type": "string" }, "version": { "type": "string" }, "status": { "type": "string" } } } }, "created": { "type": "string", "format": "date-time" } } }