Ordoro · Schema
Supplier Schema
Order ManagementInventory ManagementShippingDropshippingEcommerceMulti-ChannelFulfillmentLogistics
Properties
| Name | Type | Description |
|---|---|---|
| _link | string | |
| address | object | |
| archive_date | object | |
| automatically_show_ship_to_email | boolean | |
| automatically_show_supplier_price | boolean | |
| company_id | integer | |
| created | string | |
| default_shipping_account | string | |
| default_shipping_carrier | string | |
| default_shipping_method | string | |
| dropship_prefer_cart_order_line_names | integer | |
| dropshipment_routing_address | string | |
| dropshipment_routing_channel | string | |
| id | integer | |
| po_routing_address | string | |
| po_routing_channel | string | |
| shipping_method_maps | array | |
| updated | string | |
| vendor_config | object | |
| warehouse_id | 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-supplier-schema.json",
"title": "Supplier Schema",
"additionalProperties": false,
"properties": {
"_link": {
"type": "string"
},
"address": {
"$ref": "#/components/schemas/address"
},
"archive_date": {
"format": "date-time",
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"automatically_show_ship_to_email": {
"type": "boolean"
},
"automatically_show_supplier_price": {
"type": "boolean"
},
"company_id": {
"type": "integer"
},
"created": {
"format": "date-time",
"type": "string"
},
"default_shipping_account": {
"type": "string"
},
"default_shipping_carrier": {
"type": "string"
},
"default_shipping_method": {
"type": "string"
},
"dropship_prefer_cart_order_line_names": {
"type": "integer"
},
"dropshipment_routing_address": {
"type": "string"
},
"dropshipment_routing_channel": {
"type": "string"
},
"id": {
"type": "integer"
},
"po_routing_address": {
"type": "string"
},
"po_routing_channel": {
"type": "string"
},
"shipping_method_maps": {
"items": {
"$ref": "#/components/schemas/supplier_shipping_method_map"
},
"type": "array"
},
"updated": {
"format": "date-time",
"type": "string"
},
"vendor_config": {
"type": "object"
},
"warehouse_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
}
},
"required": [
"id",
"company_id",
"warehouse_id",
"created",
"updated",
"archive_date",
"automatically_show_supplier_price",
"dropship_prefer_cart_order_line_names",
"address",
"vendor_config"
],
"type": "object"
}