{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Member", "title": "Member", "type": "object", "description": "A workspace member representing a PandaDoc user within a workspace.", "properties": { "id": { "type": "string", "description": "Unique identifier of the member." }, "user_id": { "type": "string", "description": "User account identifier." }, "email": { "type": "string", "format": "email", "description": "Email address of the member." }, "first_name": { "type": "string", "description": "First name of the member." }, "last_name": { "type": "string", "description": "Last name of the member." }, "role": { "type": "string", "description": "Role of the member within the workspace.", "enum": [ "admin", "manager", "user" ] }, "status": { "type": "string", "description": "Membership status.", "enum": [ "active", "inactive" ] } } }