{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Member", "title": "Member", "type": "object", "properties": { "member_id": { "type": "string", "description": "Unique identifier for the member." }, "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." }, "scopes": { "type": "array", "items": { "type": "string" }, "description": "Scopes assigned to this member." } } }