{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ApprovalDelegationRead", "type": "object", "properties": { "approval_delegatee": { "$ref": "#/components/schemas/UserProfileRead" }, "expected_return_date": { "type": "string", "format": "date", "nullable": true }, "delegator": { "$ref": "#/components/schemas/SimpleUserProfile" }, "setter": { "$ref": "#/components/schemas/SimpleUserProfile" } }, "required": [ "approval_delegatee", "delegator", "setter" ] }