{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "/schema/educations", "title": "Education diplomat", "description": "Training follow ", "type": "object", "properties":{ "schoolname":{"type":"string"}, "diploma":{"type":"string","enum":["BEPx","CAPy"]}, "jobsector":{"type":"string","enum":["serveur"]}, "dt_start":{"type":"string","format":"date"}, "dt_end":{"type":"string","format":"date"}, "description":{"type":"string"}, "skills":{"type":"array","$ref":"schema/skills.json"} }, "required":["jobsector","schoolname","diploma","dt_start","dt_end"] }