Endicia Shipper configuration information
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/ordoro/refs/heads/main/json-schema/ordoro-shipper_endicia_vendor_config-schema.json", "title": "shipper_endicia_vendor_config", "type": "object", "definitions": { "required_to_create": { "required": [ "account_id", "passphrase" ] }, "required_in_response": { "required": [ "account_id", "web_password", "passphrase", "is_free", "challenge_question", "challenge_answer" ] } }, "description": "Endicia Shipper configuration information", "properties": { "account_id": { "type": "string" }, "passphrase": { "type": "string" }, "challenge_question": { "type": "string" }, "challenge_answer": { "type": "string" }, "is_free": { "type": "boolean", "default": false }, "web_password": { "default": null, "anyOf": [ { "type": "string" }, { "type": "null" } ] }, "confirmation_number": { "type": "string" } } }