Ordoro · Schema
Dropshipping Info Schema
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| supplier | object | |
| requested_date | object | |
| show_ship_to_email | boolean | |
| show_price | boolean | |
| requested_shipping_method | object | |
| requested_shipping_carrier | object | |
| requested_shipping_account | object | |
| instructions | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-dropshipping_info-schema.json",
"title": "Dropshipping Info Schema",
"type": "object",
"additionalProperties": false,
"properties": {
"supplier": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"link": {
"type": "string"
}
}
},
"requested_date": {
"format": "date-time",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"show_ship_to_email": {
"type": "boolean"
},
"show_price": {
"type": "boolean"
},
"requested_shipping_method": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"requested_shipping_carrier": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"requested_shipping_account": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"instructions": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
}
}