{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MemberCompact", "title": "MemberCompact", "description": "A *member* object represents either a team or user.", "type": "object", "properties": { "gid": { "description": "Globally unique identifier of the resource, as a string.", "type": "string", "readOnly": true, "example": "12345", "x-insert-after": false }, "resource_type": { "type": "string", "description": "The type of the member (team or user)", "example": "user" }, "name": { "type": "string", "description": "The name of the member", "example": "Greg Sanchez" } } }