Ordoro · Schema
Amazon Extra Info Schema
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| item_is_marketplace | string | |
| fulfillment_channel | string | |
| fulfillment_latency | object | |
| pending_quantity | number | |
| listing_id | string | |
| asin | string | |
| item_condition | object | |
| category | string | |
| item_note | string |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-extra_info_amazon-schema.json",
"title": "Amazon Extra Info Schema",
"type": "object",
"additionalProperties": false,
"properties": {
"item_is_marketplace": {
"type": "string"
},
"fulfillment_channel": {
"type": "string",
"enum": [
"DEFAULT",
"AMAZON_NA",
"AMAZON_EU",
"AMAZON_CA",
"AMAZON_JP",
"AMAZON_CN",
"AMAZON_UK"
]
},
"fulfillment_latency": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"pending_quantity": {
"type": "number"
},
"listing_id": {
"type": "string"
},
"asin": {
"type": "string"
},
"item_condition": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"category": {
"type": "string"
},
"item_note": {
"type": "string"
}
}
}