{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ItemFulfillmentLineRequest", "title": "ItemFulfillmentLineRequest", "type": "object", "properties": { "remote_id": { "type": [ "string", "null" ], "description": "The third-party API ID of the matching object." }, "item": { "type": [ "string", "null" ], "format": "uuid" }, "sales_order_line": { "type": [ "string", "null" ], "format": "uuid" }, "quantity": { "type": [ "string", "null" ], "format": "decimal", "description": "The amount of item being delivered." }, "tracking_categories": { "type": "array", "items": { "type": "string", "format": "uuid" }, "description": "The dimensions or classification tags." }, "remote_created_at": { "type": [ "string", "null" ], "format": "date-time", "description": "When the third party's item fulfillment line item was created." }, "remote_updated_at": { "type": [ "string", "null" ], "format": "date-time", "description": "When the third party's item fulfillment line item was updated." }, "integration_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "linked_account_params": { "type": [ "object", "null" ], "additionalProperties": { "description": "Any type" } }, "remote_fields": { "type": "array", "items": { "$ref": "#/components/schemas/RemoteFieldRequest" } } }, "description": "# The ItemFulfillmentLine Object\n### Description\nThe `ItemFulfillmentLine` object represents the specific quantity of a particular product or service that has actually been shipped or delivered against its corresponding order line.\n\n### Usage Example\nFetch from the `GET ItemFulfillment` endpoint and view a company's item fulfillment lines." }