{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ApprovalDelegateeDocs", "type": "object", "properties": { "id": { "type": "integer", "readOnly": true }, "department": { "type": "integer", "nullable": true }, "firstName": { "type": "string", "maxLength": 100 }, "lastName": { "type": "string", "maxLength": 100 }, "email": { "type": "string", "format": "email", "maxLength": 254 } }, "required": [ "email" ] }