{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EducationsResponse", "title": "EducationsResponse", "type": "object", "properties": { "total": { "type": "integer" }, "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "school": { "type": "string" }, "degree": { "type": "string" }, "fieldOfStudy": { "type": "string" }, "startDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" } } } } } }