{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GroupMemberStatus", "title": "GroupMemberStatus", "description": "Object with information determining the group membership status of a control plane.", "type": "object", "properties": { "is_member": { "description": "Boolean indicating if a control plane is a member of a control plane group.", "type": "boolean", "example": true, "readOnly": true } }, "required": [ "is_member" ] }