{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-post_shipper_base-schema.json",
"title": "post_shipper_base",
"type": "object",
"additionalProperties": false,
"properties": {
"vendor": {
"description": "The vendor of shipper.",
"type": "string",
"enum": [
"amazon",
"australia_post"
]
},
"hidden_shipping_methods": {
"description": "A list of shipping methods per shipper type that can be excluded from retrieved rates",
"items": {},
"type": "array"
},
"name": {
"description": "The display name of this shipper.",
"type": "string"
}
},
"required": [
"vendor"
]
}