{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/better-stack/refs/heads/main/json-schema/better-stack-team-member-invite-request-schema.json", "title": "TeamMemberInviteRequest", "description": "Request body for inviting a team member.", "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "Email address of the person to invite.", "example": "newmember@example.com" }, "role": { "type": "string", "description": "Role to assign.", "enum": [ "admin", "member", "viewer" ], "example": "member" } }, "required": [ "email" ] }