{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AssignmentsForRequest", "title": "AssignmentsForRequest", "type": "object", "description": "`Price List Assignments` object used in a batch create request.", "x-internal": false, "properties": { "price_list_id": { "type": "integer", "format": "int32", "description": "Price list ID for assignment.", "example": 1 }, "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": [ "price_list_id" ] }