{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Assignee", "title": "Assignee", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the assigned user.", "example": "Ellen Example" }, "email": { "type": "string", "description": "The email of the assigned user.", "example": "example@test.com" } }, "required": [ "email", "name" ] }