Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| mentor | object | |
| mentee | object | |
| mentorshipType | object | |
| startDate | string | |
| endDate | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Mentorship",
"title": "Mentorship",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"descriptor": {
"type": "string",
"example": "example_value"
},
"mentor": {
"$ref": "#/components/schemas/ResourceReference"
},
"mentee": {
"$ref": "#/components/schemas/ResourceReference"
},
"mentorshipType": {
"$ref": "#/components/schemas/ResourceReference"
},
"startDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"endDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"status": {
"type": "string",
"example": "example_value"
}
}
}