{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InvitationCreate", "title": "InvitationCreate", "type": "object", "required": [ "email", "scope" ], "properties": { "email": { "type": "string", "format": "email", "description": "Email address to send the invitation to." }, "scope": { "type": "string", "description": "Scope to assign to the invited member." } } }