{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "CreateMaintainerInvitationRequest", "required": [ "email" ], "properties": { "email": { "description": "Email of an invited user.", "type": "string", "format": "email", "example": "[email protected]" } }, "type": "object", "example": { "email": "[email protected]" } }