{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeliveryChannel", "title": "DeliveryChannel", "required": [ "id" ], "type": "object", "properties": { "id": { "type": "string", "description": "Change order shipping type, which can be `pickup-in-point` for [pickup point](https://help.vtex.com/en/tutorial/pickup-points--2fljn6wLjn8M4lJHA6HP3R), and `delivery` for delivery.", "example": "delivery" } }, "example": { "id": "delivery" } }