Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions source/schemas/shopping/types/line_item.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,15 @@
"create": "omit",
"update": "optional"
}
},
"buyer_notes": {
"type": "string",
"maxLength": 500,
"description": "Free-text buyer instructions for this line item (e.g., customization requests, gift messages, dietary notes). Business MAY act on, echo back, or ignore.",
"ucp_request": {
"create": "optional",
"update": "optional"
}
}
}
}
5 changes: 5 additions & 0 deletions source/schemas/shopping/types/order_line_item.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,11 @@
"parent_id": {
"type": "string",
"description": "Parent line item identifier for any nested structures."
},
"buyer_notes": {
"type": "string",
"maxLength": 500,
"description": "Buyer instructions for this line item, preserved from checkout. Business SHOULD surface these in fulfillment workflows."
}
}
}