{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Mentorship", "title": "Mentorship", "type": "object", "properties": { "id": { "type": "string" }, "descriptor": { "type": "string" }, "mentor": { "$ref": "#/components/schemas/ResourceReference" }, "mentee": { "$ref": "#/components/schemas/ResourceReference" }, "status": { "type": "string" }, "startDate": { "type": "string", "format": "date" }, "endDate": { "type": "string", "format": "date" } } }