{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteOrganizationMembersRequestContent", "title": "DeleteOrganizationMembersRequestContent", "type": "object", "additionalProperties": true, "required": [ "members" ], "properties": { "members": { "type": "array", "description": "List of user IDs to remove from the organization.", "minItems": 1, "items": { "type": "string", "format": "user-id-with-max-length" } } } }