{ "type": "object", "properties": { "id": { "type": "string", "description": "User identifier", "example": "usr_abc123" }, "email": { "type": "string", "format": "email", "description": "Member email address", "example": "alice@example.com" }, "name": { "type": "string", "description": "Member display name", "example": "Alice Smith" }, "role": { "type": "string", "description": "Member role in the space", "enum": [ "owner", "admin", "editor", "viewer", "commenter" ], "example": "editor" } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/archbee/refs/heads/main/json-schema/archbee-api-member-schema.json", "title": "Member" }