{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Interviewer", "title": "Interviewer", "type": "object", "properties": { "email": { "type": "string" }, "id": { "type": "string" }, "first_name": { "type": "string" }, "last_name": { "type": "string" }, "name": { "type": "string" } }, "required": [ "id", "first_name", "last_name", "name", "email" ] }