{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AssignmentForPutRequest", "title": "AssignmentForPutRequest", "type": "object", "properties": { "customer_group_id": { "type": "integer", "format": "int32", "description": "Customer group ID for assignment.", "example": 2 }, "channel_id": { "type": "integer", "format": "int32", "description": "Channel ID for assignment", "example": 1 } }, "required": [ "customer_group_id", "channel_id" ] }