{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GoalMembershipCompact", "title": "GoalMembershipCompact", "allOf": [ { "$ref": "#/components/schemas/GoalMembershipBase" }, { "type": "object", "properties": { "is_commenter": { "type": "boolean", "deprecated": true, "readOnly": true, "description": "*Deprecated: new integrations should prefer the `role` field.* Describes if the member is comment only in goal.", "example": false }, "is_editor": { "type": "boolean", "deprecated": true, "readOnly": true, "description": "*Deprecated: new integrations should prefer the `role` field.* Describes if the member is editor in goal.", "example": false } } } ] }