{
  "openapi": "3.1.0",
  "info": {
    "description": "This guide provides list of REST API and sample code in several languages.\n\nThe API Username and Token may be found at https://app.suredone.com/settings/organization/security\n\n## Throttling (released 2022-12-09)\n\nEvery request is throttled with the following basic schema:\n\n- `read` 300 requests per minute for `GET`, `TRACE`, `CONNECT` and related calls\n\n- `write` 60 requests per minute for `POST`, `PATCH`, `PUT` and `DELETE` calls\n\n- `options` 300 requests per minute for `OPTIONS` (for apps and ui integrations)\n\nThe below headers are returned with every request along with a status code of `429` when throttling has been activated.\n\n- `X-Rate-Limit-Limit` (ie `300`)\n\n- `X-Rate-Limit-Remaining` (`295`)\n\n- `X-Rate-Limit-Reset` (ie `1666020201`)\n\n- `X-Rate-Limit-Type` (ie `read`)",
    "title": "SureDone API v3",
    "version": "3.0.0"
  },
  "servers": [
    {
      "url": "https://api.suredone.com",
      "description": "Production API"
    }
  ],
  "security": [
    {
      "apiUserToken": [],
      "apiAuthToken": []
    }
  ],
  "tags": [
    {
      "description": "+ Description: The SureDone Automation Engine is a product and order data normalization engine that abstracts the complexity of the many formats and transmission mechanisms available today. The automation engine API endpoint is designed to be the entry point for configuring, managing, and listing automation functionality. Automations may be custom (created by the user) or installed (from a shared/published automation in the SureDone marketplace). A single JSON configuration block with attributes detailed below defines each automation. The implementation of these attributes in various combinations simplifies even the most complex needs such as transmission of EDI payloads, generating custom purchase orders, connecting vendor drop shipping and inventory imports, and much more.\n\n+ Recommendation: Leverage the power of the automation engine to set up product and order data imports where custom development may have been historically required. Once imported, another automation may be set up to export the data to any destination and in any format. In addition to facilitating a conduit of data from one source to another, the automation engine can be utilized to incorporate various logistic requirements such as automated inventory imports, product catalog imports, purchase order exports, ship tracking imports and a near limitless combination of actions to meet enterprise requirements.\n\n### Request Fields\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|name|name of automation, 255 character limit|Yes|\n|vendor|vendor name, 255 character limit||\n|slug|custom slug of automation, 255 character limit, will be generated automatically if not provided||\n|active|boolean enable the automation|Yes|\n|draft|boolean save automation in draft mode||\n|schedule|schedule for automation to run, must be valid cron line|Yes|\n|type|automation type, value of \"products\", \"orders\" or \"fitment\" (only valid for export)|Yes|\n|action|automation action, value of \"import\" or \"export\"|Yes|\n|connection|object defining properties to successfully connect to a transmission method||\n|connection > type|method, one of \"ftp\", \"sftp\", \"ftps\", \"sdsftp\", \"sds3\", \"http\", \"email\"|Yes|\n|connection > address|address based on type|For ftp, sftp, ftps, http, email|\n|connection > username|transmission username|For ftp, sftp, ftps, http|\n|connection > password|transmission password|For ftp, sftp, ftps, http|\n|connection > path|directory to import/export|For ftp, sftp, ftps, sdsftp, sds3|\n|connection > port|ftp/sftp/ftps port number, defaults to 21||\n|connection > method|HTTP verb for payload download, defaults to \"POST\"|Optional for http|\n|connection > headers|object of http headers for api requests|Optional for http|\n|connection > payload|object of http params to trigger download|Required for http|\n|file_configs|array of objects, each one defining rules for import/export of payload||\n|file_configs > name|file name, also supports {{DATE}} for writing, regex for reading||\n|file_configs > delimiter|character file delimiter, defaults to \",\"||\n|file_configs > field_map|object with fields to include and map from payload with SureDone field as the key and mapped field as the value|Yes|\n|file_configs > identifier|SureDone field identifier to match on, defaults to guid for products, oid for orders||\n|file_configs > search|SureDone search string to determine products or orders to import or export||\n|file_configs > create|suredone bulk file action for adding products, value of \"start\" or \"add\"|One or more of create, update or remove are REQUIRED if action=import|\n|file_configs > update|suredone bulk file action for updating products, value of \"edit\" or \"relist\"|One or more of create, update or remove are REQUIRED if action=import|\n|file_configs > remove|suredone bulk file action for updating, value of \"end\" or \"delete\"|One or more of create, update or remove are REQUIRED if action=import|\n|parameters|array of parameter objects for shared automations||\n|parameters > name|string value to match with `{{example name}}` anywhere else in the config|Required for parameters|\n|parameters > value|mixed type value to inject into the parameter|Required for parameters|\n|parameters > description|string display description of the parameter|Optional|\n|parameters > encrypted|boolean value to store parameter value encrypted|Optional|",
      "name": "Automation Requests"
    },
    {
      "description": "+ Description: The SureDone Order Management system was recently redesigned with all lessons learned over the years to provide next generation functionality. The new Order Management system includes and goes beyond multichannel order management, order fulfillment, purchase orders, drop shipping, accounting and other custom functions, all designed to be leveraged by Automation Engine and other aspects of the SureDone platform. The orders API endpoint is designed to be utilized for retrieving, creating and updating orders via SureDone.\n\n+ The minimum requirements to create an order in the new system are an order `total`, `ordernumber` (and ideally `channel`) and order `items` as described below. And orders that are deleted are actually archived in SureDone so it’s best to update orders that have mistakes instead of a creating them again. Orders can be retrieved from the new orders API as follows:\n    - https://api.suredone.com/v3/orders?q={{valid search}}​ - retrieve orders that meet ​ search criteria\n    - https://api.suredone.com/v3/orders/{{oid}}​ - retrieve order by the numeric OID\n    - https://api.suredone.com/v3/orders/{{status}}​ - retrieve orders matching valid statuses:\n        + INCOMPLETE: Order is not paid for or other state not ready for fulfillment\n        + PENDING: Order may have drop shipped or purchase order has been created but not acknowledged\n        + ORDERED: Order may have been drop shipped or purchase order created and is acknowledged\n        + READY: Order is ready for fulfillment\n        + DROPSHIPPED: Order is complete and was drop shipped\n        + CANCELED: Order is cancelled\n        + REFUNDED: Order is refunded\n        + COMPLETE: Order is fulfilled\n        + ARCHIVED: Order is archived\n\n+ https://api.suredone.com/v3/orders/shipped​ - retrieve orders marked as shipped\n\n+ https://api.suredone.com/v3/orders/paid​ - retrieve orders marked as paid\n\n+ https://api.suredone.com/v3/orders/lineitem?q=​ - retrieve line item payload (used with search)\n\n+ https://api.suredone.com/v3/orders/{{channel}}​ - retrieve orders where channel = {{channel}}\n\n### Request Fields\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|oid|database ID, integer Must be supplied as identifier if “order” is not supplied as the identifier.|Yes for combine and split orders|\n|order|concatenation of “channel” and “ordernumber” which may be used as an identifier.||\n|ordernumber|order number, 100 character limit|Yes for create order|\n|channel|channel where the order was originated, 50 character limit||\n|instance|for orders imported via SureDone, the integration instance of the channel||\n|details|channel specific order details encoded as JSON such as item fees and delivery estimates||\n|date|date of order, converted to timezone configured in user’s SureDone settings||\n|dateutc|date or order in UTC||\n|dateupdated|last modified date of order, converted to timezone configured in SureDone account||\n|oidconsolidate|oid of archived or parent order in split and combined orders respectively||\n|gift|whether order was marked as a gift, boolean||\n|comments|order comments||\n|internalnotes|array of internal notes indexed by date of each note and encoded as JSON, sending in “internalnotesoverwrite” with a non-false value will overwrite all contents of this field||\n|status|order status with value one of “INCOMPLETE”, “READY”, “PENDING”, “ORDERED”, “DROPSHIPPED”, “COMPLETE” or “ARCHIVED”||\n|transactionid|transaction ID of the order, may correlate to a system identifier required by the channel for fulfilling the order||\n|correlationid|correlation ID for the payment of the order||\n|payment|payment method of the order||\n|paymentdate|date of payment to mark paymentstatus as COMPLETE||\n|paymentstatus|payment status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”||\n|shippingcarrier|buyer requested shipping carrier||\n|shippingservice|buyer requested shipping service||\n|shippingstatus|shipping status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”, sending “COMPLETE” will mark order as “shipped” on external channels||\n|total|order total including all taxes, shipping, handling and discounts|Yes for create order|\n|itemtotal|total of all order items||\n|shippingtotal|total of all shipping costs charged||\n|handlingtotal|total of all handling charged||\n|taxtotal|total of all taxes charged||\n|discounttotal|total of all discounts applied to order||\n|discountcode|code used to generate discount, 50 character limit||\n|currency|currency code of the order, 10 character limit||\n|account|account id of suredone storefront user||\n|archived|whether order has been “deleted”, boolean||\n|meta|miscellaneous order data JSON encoded including but not limited to raw payloads from channel imports and raw validated addresses||\n|email|email of customer||\n|billing|address data object for billing contact||\n|billing > country|country of billing contact||\n|billing > firstname|first name of billing contact||\n|billing > middlename|middle name of billing contact||\n|billing > lastname|last name of billing contact||\n|billing > company|company of billing contact||\n|billing > streetl|address street of billing contact||\n|billing > street2|address street 2 of billing contact||\n|billing > street3|address street 3 of billing contact||\n|billing > city|city of billing contact||\n|billing > stateprovince|state or province of billing contact||\n|billing > postalcode|postal code of billing contact||\n|billing > phone|phone number of billing contact||\n|billing > phone2|second phone number of billing contact||\n|shipping|address data object for shipping contact||\n|shipping > country|country of shipping contact||\n|shipping > firstname|first name of shipping contact||\n|shipping > middlename|middle name of shipping contact||\n|shipping > lastname|last name of shipping contact||\n|shipping > company|company of shipping contact||\n|shipping > streetl|address street of shipping contact||\n|shipping > street2|address street 2 of shipping contact||\n|shipping > street3|address street 3 of shipping contact||\n|shipping > city|city of shipping contact||\n|shipping > stateprovince|state or province of shipping contact||\n|shipping > postalcode|postal code of shipping contact||\n|shipping > phone|phone number of shipping contact||\n|shipping > phone2|second phone number of shipping contact||\n|items|order items object with one or more items, for products that exist in SureDone the following fields may be populated if they are missing during order creation|Yes for create order|\n|items > itemid|order item id, required for updating order item data||\n|items > sku|order item SKU, for products matching in SureDone this will be the “guid”, 100 character limit||\n|items > title|order item title, 500 character limit||\n|items > price|order item price||\n|items > quantity|order item quantity purchased||\n|items > media|order item image URL||\n|items > weight|order item weight||\n|items > dimweight|order item dim weight||\n|items > boxlength|order item box length||\n|items > boxwidth|order item box width||\n|items > boxheight|order item box height||\n|items > source|order item stock (warehouse) source as determined by product stock levels for products that exist in SureDone||\n|items > itemdetails|order item details JSON encoded including but not limited to full product payload for products existing in SureDone at the time of order creation||\n|items > itemstatus|order item status||\n|items > vendor|order item vendor||\n|items > purchaseorderid|order item purchase order for vendors and/or erp||\n|items > “customfields”|order item custom fields created||\n|shipments|order shipments object with one or more shipments||\n|shipments > shipid|order shipment id, required when updating an existing shipment post creation||\n|shipments > shipcarrier|order shipment carrier||\n|shipments > shipservice|order shipment service||\n|shipments > shiptracking|order shipment tracking number||\n|shipments > shipdate|date of order shipment||\n|shipments > shipcost|cost of order shipment||\n|shipments > shipuser|user who generated order shipment||\n|shipments > shipdetails|order shipment details JSON encoded including but not limited to fulfillment order item data in the case of short shipping||\n|shipments > shipdetails > items|order shipment package line item sku and quantity details, supported via API parameters `shipitems` or `shipsku` with `shipquantity`. Example `{\"shipments\":[{\"shiptracking\":\"123123123123\",\"shipdate\":\"NOW\",\"shipitems\":[{\"sku\":\"U8800ZZZ\",\"quantity\":1,\"fulfilled\":null}]}]}`. Optionally, you may use `shipskufield` and `shipskuvalue` to internally map `shipsku` to an `order.item.sku` via matching where `order.item.itemdetails.product.{shipskufield} = shipskuvalue`.||\n|refunds|order refunds object with one or more refunds||\n|refunds > refundid|order refund id, required for updating an order refund||\n|refunds > refunddate|date of order refund||\n|refunds > refunddetails|order refund details JSON encoded||\n|refunds > refunddetails > items|order refund line item sku and quantity details, supported via API parameters `refunditems` or `refundsku` with `refundquantity`.||\n|sold|whether to sync inventory for existing order items, boolean||",
      "name": "Orders Requests"
    },
    {
      "description": "+ Description: The logging api endpoint exposes SureDone’s sophisticated infrastructure for logging events related to products, orders, storefront, settings, and more. Data from this request can provide granular information for the state of each element going to the platform as well as the actual API calls the platform sends to the different marketplaces with varying degrees of detail.\n\n+ Parameters: The following may be set to modify the response:\n  - start: starting index to pull logs from and accepts an integer value.\n  - records: number of logs to return which defaults to “20” and accepts an integer from “1” to “50”.\n\n+ Search Fields: Use these fields to search logs, each of the following parameters may be sent delimited by a “,” to filter multiple values:\n  - identifier: identifier of the element such as the guid for products and order number for orders.\n  - context: name of channel such as “ebay” or “amazon”.\n  - integration: source log entry such as “ebay”, “amazon”, or “partnername”.\n  - instance: instance id of the context which defaults to “0” and may be number 2 or greater.\n  - request_id: unique request id tied to a process.\n  - timestamp: accepts start and end time requests of log entries and must sent in as two parameters “timestamp_start” and “timestamp_end” with date format Y-m-d H:i:s.\n  - id: log record entry identifier.\n\n+ Additional Fields: Requires use of above search fields in conjuction to activate below filters. Use these fields in addition to above search fields to narrow down log results:\n  - channel_id: channel specific identifier such as ebayid for eBay and amznsku for Amazon.\n  - action: SureDone action which may be one of “add”, “edit”, “relist”, “end”, “delete”, “start”, “sold” and “skip” for products. Other actions include “import”, “export”, “acknowledge” and “tracking”.\n  - operation: channel specific operation such as “ReviseFixedPriceItem” for eBay.\n  - method: mode by which log was created and may be one of “api”, “ui”, “bulk”, “auto” and “sync”.\n  - type: type of log record to return which may be one of “item” for general products, “inventory”, “price”, “image”, “variation” and “shipping” for feed specific logs related to Amazon, “order”, “setting”, “category” and “page” for orders, settings, and storefront types respectively.\n  - result: log result which may be one of “success”, “error”, “failure” and “warning” for general logs, and “queued”, “pending”, “submitted”, and “complete” for the queue states of Amazon.\n  - job_id: identifier of job queue or other job type.\n\n+ Response: Below are response field descriptions:\n  - found: number of results found, if 1001 then check found_more_logs to know if there are more results\n  - found_more_logs: confirms if there are more than 1001 log results\n\n+ Recommendation: Utilize the Logging API endpoint to discover issues with product and order requests and to understand the state of products awaiting status for integrations based on queue systems such as Amazon.",
      "name": "Logging Requests"
    },
    {
      "description": "+ Description: The SureDone Webhooks service provides real-time event notifications to external systems. When events occur in SureDone (such as order creation or fulfillment), webhook payloads are delivered to your configured HTTPS endpoints. Webhooks use the CloudEvents 1.0 specification and include cryptographic signatures for verification.\n\n+ Currently supported event types (Phase 1 — Order Events):\n    - `order.created` — Fired when a new order is created\n    - `order.updated` — Fired when an existing order is updated\n    - `order.fulfilled` — Fired when an order is marked as fulfilled\n    - `order.status_changed` — Fired when an order status changes\n\n+ Additional event types (coming soon):\n    - `product.created` — Fired when a new product is created\n    - `product.updated` — Fired when an existing product is updated\n    - `product.deleted` — Fired when a product is deleted\n    - `product.inventory_changed` — Fired when product inventory levels change\n\n+ Webhook payloads conform to the CloudEvents 1.0 specification and are delivered as JSON with the following envelope:\n    - `specversion` — Always `1.0`\n    - `type` — Event type prefixed with `suredone.` (e.g., `suredone.order.created`)\n    - `source` — Source identifier (e.g., `/suredone/users/1021`)\n    - `id` — Unique event ID with `evt_` prefix\n    - `time` — ISO 8601 timestamp with microsecond precision\n    - `datacontenttype` — Always `application/json`\n    - `data` — Event-specific payload containing key fields and resource identifiers\n\n+ Example webhook payload:\n```json\n{\n    \"specversion\": \"1.0\",\n    \"type\": \"suredone.order.created\",\n    \"source\": \"/suredone/users/1021\",\n    \"id\": \"evt_a1b2c3d4e5f6a1b2c3d4e5f6\",\n    \"time\": \"2026-02-19T12:00:00.000000Z\",\n    \"datacontenttype\": \"application/json\",\n    \"data\": {\n        \"oid\": \"12345\",\n        \"channel\": \"ebay\",\n        \"status\": \"READY\",\n        \"resource_type\": \"order\",\n        \"resource_id\": \"12345\"\n    }\n}\n```\n\n+ Signature Verification: Each webhook delivery includes the following headers for signature verification:\n    - `Webhook-Id` — Unique message identifier\n    - `Webhook-Timestamp` — Unix timestamp of the delivery\n    - `Webhook-Signature` — HMAC-SHA256 signature of the payload\n    - To verify: compute `HMAC-SHA256(base64decode(secret), \"{webhook-id}.{webhook-timestamp}.{body}\")` and compare with the signature in the header. The signing secret is returned when creating an endpoint and can be rotated via the rotate-secret endpoint.\n\n+ Recommendation: We recommend combining webhooks with periodic polling for mission-critical workflows. Webhooks provide near-real-time notifications, but transient network issues may cause occasional missed deliveries. Failed deliveries are automatically retried with exponential backoff and can be manually retried via the API.\n\n+ Best Practices:\n    - Always verify webhook signatures before processing payloads\n    - Return a 2xx HTTP status code within 15 seconds to acknowledge receipt\n    - Use the event `id` field for idempotency to handle potential duplicate deliveries\n    - Subscribe only to the event types your integration needs\n    - Monitor your endpoint health via the statistics API or the SureDone UI",
      "name": "Webhooks"
    },
    {
      "description": "+ Description: The Account API provides self-service account and sub-user deletion. The account deletion endpoint (`DELETE /v3/account`) was built for Apple App Store compliance, enabling users to delete their accounts directly from the app. The sub-user deletion endpoint (`DELETE /v3/account/users/{uaid}`) allows account owners and authorized sub-users to remove team members.\n\n+ Authentication: All account endpoints require legacy API credentials (`X-Auth-User` and `X-Auth-Token`). Sub-user deletion with scope-based authorization additionally requires `X-Auth-Jwt` (identity token) and `X-Auth-Account` (sub-user UAID or `0` for owner).\n\n+ Account deletion is accessible even on the BASIC (disabled/downgraded) plan, so users can delete their account after cancellation.\n\n+ Account deletion behavior:\n    - The account is deactivated immediately (plan downgraded, tokens rotated, sessions expired)\n    - All data is permanently deleted within 30 days via asynchronous cleanup\n    - Active listings on connected channels (eBay, Amazon, Walmart, etc.) are NOT automatically removed\n    - The endpoint is idempotent — calling it again after scheduling returns success without re-running\n\n+ Sub-user deletion behavior:\n    - The sub-user is removed from the account\n    - Auth tokens and sessions are invalidated immediately\n    - The owner's sub-user count is recalculated\n    - Identity records are cleaned up before the account row, so retries are safe on failure\n\n+ Authorization for sub-user deletion:\n    - Account owner (acct=0) is always authorized\n    - Sub-users need the `organization:permissions:write` or `platform:allOrganizations:permissions:write` scope (Change Permissions capability)\n    - A sub-user cannot delete themselves\n    - The account owner cannot be targeted for deletion",
      "name": "Account"
    },
    {
      "name": "Registration",
      "description": "Creates a new SureDone account and returns sign-in credentials.\n\nThe registration endpoint is intentionally unauthenticated — it is the\nbootstrap surface for new accounts. Rate limits apply both per source\nIP and globally (see the 429 response).\n"
    }
  ],
  "paths": {
    "/v3/account": {
      "delete": {
        "responses": {
          "200": {
            "description": "Already scheduled (idempotent).",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "deletionScheduled": true,
                    "estimatedCompletion": "30 days",
                    "message": "Account deletion has already been scheduled. Your account has been deactivated.",
                    "result": "success"
                  },
                  "properties": {
                    "deletionScheduled": {
                      "type": "boolean"
                    },
                    "estimatedCompletion": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "deletionScheduled": true,
                      "estimatedCompletion": "30 days",
                      "message": "Account deletion has already been scheduled. Your account has been deactivated.",
                      "result": "success"
                    }
                  }
                }
              }
            }
          },
          "403": {
            "description": "Sub-user attempted account deletion.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Only the account owner can request account deletion",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Only the account owner can request account deletion",
                      "result": "error"
                    }
                  }
                }
              }
            }
          },
          "405": {
            "description": "Delete Account — 405 error response. (Method not allowed — only DELETE is accepted on this path.)",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Method not allowed. Valid methods: DELETE",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Method not allowed. Valid methods: DELETE",
                      "result": "error"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Internal error during account disable flow.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "An unexpected error occurred. Please try again later.",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "An unexpected error occurred. Please try again later.",
                      "result": "error"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Account"
        ],
        "description": "Schedules the authenticated account for permanent deletion. The account is deactivated immediately and all data will be permanently deleted within 30 days. Only the account owner can request account deletion.",
        "operationId": "deleteAccount",
        "summary": "Delete Account"
      }
    },
    "/v3/account/users/{uaid}": {
      "delete": {
        "parameters": [
          {
            "description": "The sub-user's UAID (from `sd_users_accts`). Must be a positive integer.",
            "in": "path",
            "name": "uaid",
            "required": true,
            "example": 3815,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "e.g. 0",
            "in": "header",
            "name": "X-Auth-Account",
            "required": false,
            "example": "0",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "e.g. {id-token}",
            "in": "header",
            "name": "X-Auth-Jwt",
            "required": false,
            "example": "{id-token}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Delete Sub-User — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "User deleted successfully",
                    "result": "success"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "User deleted successfully",
                      "result": "success"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Targeting the account owner.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "The account owner cannot be deleted",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "The account owner cannot be deleted",
                      "result": "error"
                    }
                  }
                }
              }
            }
          },
          "403": {
            "description": "Caller lacks required permissions.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Only the account owner or users with Change Permissions can delete users",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Only the account owner or users with Change Permissions can delete users",
                      "result": "error"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Sub-user not found in this account.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "User not found",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "User not found",
                      "result": "error"
                    }
                  }
                }
              }
            }
          },
          "405": {
            "description": "Delete Sub-User — 405 error response. (Method not allowed — only DELETE is accepted on this path.)",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Method not allowed. Valid methods: DELETE",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Method not allowed. Valid methods: DELETE",
                      "result": "error"
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Unexpected error during deletion.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "An unexpected error occurred during user deletion",
                    "result": "error"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "An unexpected error occurred during user deletion",
                      "result": "error"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Account"
        ],
        "description": "Permanently deletes a sub-user from the account. Removes the user and cleans up all cached auth tokens and sessions.\n\nRequires account owner access or a sub-user with the Change Permissions scope (`organization:permissions:write` or `platform:allOrganizations:permissions:write`). For scope-based authorization, the `X-Auth-Jwt` header must contain a valid identity token.",
        "operationId": "deleteSubUser",
        "summary": "Delete Sub-User"
      }
    },
    "/v3/automations/custom": {
      "get": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `listCustomAutomations`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "List Custom Automations — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "automations": [
                      {
                        "action": "export",
                        "active": false,
                        "config": {
                          "connection": {
                            "address": "sftp.suredone.com",
                            "password": "***",
                            "path": "/ftp/test/",
                            "port": 22,
                            "type": "sftp",
                            "username": "wholesalep"
                          },
                          "file_configs": [
                            {
                              "field_map": {
                                "price": "price",
                                "stock": "quantity",
                                "title": "product title",
                                "upc": "upc"
                              },
                              "name": "stock-upc-export.csv",
                              "search": "upc:-= upc:-Apply"
                            }
                          ]
                        },
                        "connection": "sftp",
                        "created": "2018-06-19 14:18:07",
                        "id": "148",
                        "last_modified": "2018-06-19 14:56:31",
                        "metadata": null,
                        "name": "Demo Stock UPC Export",
                        "schedule": "0 3,15 * * *",
                        "shared": false,
                        "shared_id": "0",
                        "slug": "demo-demo-stock-upc-export",
                        "type": "products",
                        "user_id": "1019",
                        "vendor": "demo"
                      }
                    ],
                    "count": "1",
                    "timestamp": "2018-06-19T14:59:25Z"
                  },
                  "properties": {
                    "automations": {
                      "items": {
                        "properties": {
                          "action": {
                            "type": "string"
                          },
                          "active": {
                            "type": "boolean",
                            "description": "Whether the automation is enabled and eligible to run on its schedule."
                          },
                          "config": {
                            "properties": {
                              "connection": {
                                "properties": {
                                  "address": {
                                    "type": "string"
                                  },
                                  "password": {
                                    "type": "string"
                                  },
                                  "path": {
                                    "type": "string"
                                  },
                                  "port": {
                                    "type": "number"
                                  },
                                  "type": {
                                    "type": "string"
                                  },
                                  "username": {
                                    "type": "string"
                                  }
                                },
                                "type": "object"
                              },
                              "file_configs": {
                                "items": {
                                  "properties": {
                                    "field_map": {
                                      "properties": {
                                        "price": {
                                          "type": "string"
                                        },
                                        "stock": {
                                          "type": "string"
                                        },
                                        "title": {
                                          "type": "string"
                                        },
                                        "upc": {
                                          "type": "string"
                                        }
                                      },
                                      "type": "object"
                                    },
                                    "name": {
                                      "type": "string"
                                    },
                                    "search": {
                                      "type": "string"
                                    }
                                  },
                                  "type": "object"
                                },
                                "type": "array"
                              }
                            },
                            "type": "object"
                          },
                          "connection": {
                            "type": "string"
                          },
                          "created": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          },
                          "last_modified": {
                            "type": "string"
                          },
                          "metadata": {
                            "type": [
                              "object",
                              "null"
                            ]
                          },
                          "name": {
                            "type": "string"
                          },
                          "schedule": {
                            "type": "string"
                          },
                          "shared": {
                            "type": "boolean",
                            "description": "Whether the automation is published to the SureDone marketplace and available for other accounts to install."
                          },
                          "shared_id": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "slug": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "user_id": {
                            "type": "string"
                          },
                          "vendor": {
                            "type": "string"
                          }
                        },
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "count": {
                      "type": "string"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "automations": [
                        {
                          "action": "export",
                          "active": false,
                          "config": {
                            "connection": {
                              "address": "sftp.suredone.com",
                              "password": "***",
                              "path": "/ftp/test/",
                              "port": 22,
                              "type": "sftp",
                              "username": "wholesalep"
                            },
                            "file_configs": [
                              {
                                "field_map": {
                                  "price": "price",
                                  "stock": "quantity",
                                  "title": "product title",
                                  "upc": "upc"
                                },
                                "name": "stock-upc-export.csv",
                                "search": "upc:-= upc:-Apply"
                              }
                            ]
                          },
                          "connection": "sftp",
                          "created": "2018-06-19 14:18:07",
                          "id": "148",
                          "last_modified": "2018-06-19 14:56:31",
                          "metadata": null,
                          "name": "Demo Stock UPC Export",
                          "schedule": "0 3,15 * * *",
                          "shared": false,
                          "shared_id": "0",
                          "slug": "demo-demo-stock-upc-export",
                          "type": "products",
                          "user_id": "1019",
                          "vendor": "demo"
                        }
                      ],
                      "count": "1",
                      "timestamp": "2018-06-19T14:59:25Z"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/InvalidParams"
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Returns a paginated list of custom automations for the authenticated user.",
        "operationId": "listCustomAutomations",
        "summary": "List Custom Automations"
      },
      "post": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `createCustomAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "action": "export",
                  "active": 1,
                  "connection": {
                    "address": "sftp.suredone.com",
                    "password": "PASSWORD",
                    "path": "/ftp/test/",
                    "port": 22,
                    "type": "sftp",
                    "username": "wholesalep"
                  },
                  "file_configs": [
                    {
                      "field_map": {
                        "price": "price",
                        "stock": "quantity",
                        "title": "product title",
                        "upc": "upc"
                      },
                      "name": "stock-upc-export.csv",
                      "search": "upc:-= upc:-Apply"
                    }
                  ],
                  "name": "Demo Stock UPC Export",
                  "schedule": "0 3,15 * * *",
                  "type": "products",
                  "vendor": "demo"
                },
                "properties": {
                  "action": {
                    "type": "string"
                  },
                  "active": {
                    "type": "number"
                  },
                  "connection": {
                    "properties": {
                      "address": {
                        "type": "string"
                      },
                      "password": {
                        "type": "string"
                      },
                      "path": {
                        "type": "string"
                      },
                      "port": {
                        "type": "number"
                      },
                      "type": {
                        "type": "string"
                      },
                      "username": {
                        "type": "string"
                      }
                    },
                    "type": "object"
                  },
                  "file_configs": {
                    "items": {
                      "properties": {
                        "field_map": {
                          "properties": {
                            "price": {
                              "type": "string"
                            },
                            "stock": {
                              "type": "string"
                            },
                            "title": {
                              "type": "string"
                            },
                            "upc": {
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "name": {
                          "type": "string"
                        },
                        "search": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "name": {
                    "type": "string"
                  },
                  "schedule": {
                    "type": "string"
                  },
                  "type": {
                    "type": "string"
                  },
                  "vendor": {
                    "type": "string"
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Create Custom Automation — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": 148,
                    "results": {
                      "successful": [
                        {
                          "code": 1,
                          "message": "Automation created successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "number"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": 148,
                      "results": {
                        "successful": [
                          {
                            "code": 1,
                            "message": "Automation created successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Create a new custom automation. Requires a full automation configuration including connection and file_configs.",
        "operationId": "createCustomAutomation",
        "summary": "Create Custom Automation"
      }
    },
    "/v3/automations/custom/{id}": {
      "delete": {
        "parameters": [
          {
            "description": "The automation ID — required by `deleteCustomAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 148,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `deleteCustomAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Delete Custom Automation — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "148",
                    "results": {
                      "successful": [
                        {
                          "code": 3,
                          "message": "Automation deleted successfully"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "148",
                      "results": {
                        "successful": [
                          {
                            "code": 3,
                            "message": "Automation deleted successfully"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Delete a custom automation.",
        "operationId": "deleteCustomAutomation",
        "summary": "Delete Custom Automation"
      },
      "get": {
        "parameters": [
          {
            "description": "The automation ID — required by `getCustomAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 148,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `getCustomAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Get Custom Automation — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "automation": {
                      "action": "export",
                      "active": false,
                      "connection": "sftp",
                      "file_configs": [
                        {
                          "field_map": {
                            "price": "price",
                            "stock": "quantity",
                            "title": "product title",
                            "upc": "upc"
                          },
                          "name": "stock-upc-export.csv",
                          "search": "upc:-= upc:-Apply"
                        }
                      ],
                      "id": "148",
                      "name": "Demo Stock UPC Export",
                      "schedule": "0 3,15 * * *",
                      "slug": "demo-demo-stock-upc-export",
                      "type": "products",
                      "user_id": "1019",
                      "vendor": "demo"
                    },
                    "status": {
                      "debug_files": [],
                      "last_run_finish_debug": false,
                      "last_run_finish_prod": false,
                      "last_run_id": null,
                      "last_run_start_debug": false,
                      "last_run_start_prod": false,
                      "last_run_success_debug": null,
                      "last_run_success_prod": null
                    },
                    "timestamp": "2018-06-19T14:59:25Z"
                  },
                  "properties": {
                    "automation": {
                      "properties": {
                        "action": {
                          "type": "string"
                        },
                        "active": {
                          "type": "boolean",
                          "description": "Whether this single custom automation is currently enabled."
                        },
                        "connection": {
                          "type": "string"
                        },
                        "file_configs": {
                          "items": {
                            "properties": {
                              "field_map": {
                                "properties": {
                                  "price": {
                                    "type": "string"
                                  },
                                  "stock": {
                                    "type": "string"
                                  },
                                  "title": {
                                    "type": "string"
                                  },
                                  "upc": {
                                    "type": "string"
                                  }
                                },
                                "type": "object"
                              },
                              "name": {
                                "type": "string"
                              },
                              "search": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "id": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "schedule": {
                          "type": "string"
                        },
                        "slug": {
                          "type": "string"
                        },
                        "type": {
                          "type": "string"
                        },
                        "user_id": {
                          "type": "string"
                        },
                        "vendor": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "status": {
                      "properties": {
                        "debug_files": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "last_run_finish_debug": {
                          "type": "boolean"
                        },
                        "last_run_finish_prod": {
                          "type": "boolean"
                        },
                        "last_run_id": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "last_run_start_debug": {
                          "type": "boolean"
                        },
                        "last_run_start_prod": {
                          "type": "boolean"
                        },
                        "last_run_success_debug": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "last_run_success_prod": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "automation": {
                        "action": "export",
                        "active": false,
                        "connection": "sftp",
                        "file_configs": [
                          {
                            "field_map": {
                              "price": "price",
                              "stock": "quantity",
                              "title": "product title",
                              "upc": "upc"
                            },
                            "name": "stock-upc-export.csv",
                            "search": "upc:-= upc:-Apply"
                          }
                        ],
                        "id": "148",
                        "name": "Demo Stock UPC Export",
                        "schedule": "0 3,15 * * *",
                        "slug": "demo-demo-stock-upc-export",
                        "type": "products",
                        "user_id": "1019",
                        "vendor": "demo"
                      },
                      "status": {
                        "debug_files": [],
                        "last_run_finish_debug": false,
                        "last_run_finish_prod": false,
                        "last_run_id": null,
                        "last_run_start_debug": false,
                        "last_run_start_prod": false,
                        "last_run_success_debug": null,
                        "last_run_success_prod": null
                      },
                      "timestamp": "2018-06-19T14:59:25Z"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Returns a single custom automation by ID, including its current run status.",
        "operationId": "getCustomAutomation",
        "summary": "Get Custom Automation"
      },
      "patch": {
        "parameters": [
          {
            "description": "The automation ID — required by `updateCustomAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 148,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `updateCustomAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "file_configs": [
                    {
                      "diff_fields": [
                        "stock"
                      ],
                      "diff_update": 1,
                      "field_map": {
                        "stock": "quantity"
                      },
                      "field_run": {
                        "upc": "upc"
                      },
                      "identifier": "upc",
                      "name": "stock-upc-export.csv",
                      "update": "edit"
                    }
                  ]
                },
                "properties": {
                  "file_configs": {
                    "items": {
                      "properties": {
                        "diff_fields": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "diff_update": {
                          "type": "number"
                        },
                        "field_map": {
                          "properties": {
                            "stock": {
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "field_run": {
                          "properties": {
                            "upc": {
                              "type": "string"
                            }
                          },
                          "type": "object"
                        },
                        "identifier": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "update": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Update Custom Automation — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "148",
                    "results": {
                      "successful": [
                        {
                          "code": 2,
                          "message": "Automation updated successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "148",
                      "results": {
                        "successful": [
                          {
                            "code": 2,
                            "message": "Automation updated successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Update an existing custom automation. Only the fields provided in the request body will be updated.",
        "operationId": "updateCustomAutomation",
        "summary": "Update Custom Automation"
      }
    },
    "/v3/automations/custom/{id}/parameters/{name}": {
      "put": {
        "parameters": [
          {
            "description": "The automation ID — required by `updateCustomAutomationParameter`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 148,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "The parameter name (key in the automation parameters map). (Endpoint: `updateCustomAutomationParameter`.)",
            "in": "path",
            "name": "name",
            "required": true,
            "example": "api_key",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `updateCustomAutomationParameter`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "encrypted": true,
                  "value": "new-api-key-value"
                },
                "properties": {
                  "encrypted": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Update Custom Automation Parameter — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "148",
                    "results": {
                      "successful": [
                        {
                          "code": 2,
                          "message": "Automation parameters updated successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "148",
                      "results": {
                        "successful": [
                          {
                            "code": 2,
                            "message": "Automation parameters updated successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Update a single parameter on a custom automation. The parameter name is specified in the URL path, and the request body contains the parameter properties to update.",
        "operationId": "updateCustomAutomationParameter",
        "summary": "Update Custom Automation Parameter"
      }
    },
    "/v3/automations/custom/{id}/run": {
      "get": {
        "parameters": [
          {
            "description": "The automation ID — required by `runCustomAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 148,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Run the automation in debug (dry-run) mode without persisting side effects. (Endpoint: `runCustomAutomation`.)",
            "in": "query",
            "name": "debug",
            "required": false,
            "example": true,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Limit to fields whose values changed since the previous run (true) versus running the full export (false). (Endpoint: `runCustomAutomation`.)",
            "in": "query",
            "name": "diff",
            "required": false,
            "example": true,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Send a completion notification when the run finishes. (Endpoint: `runCustomAutomation`.)",
            "in": "query",
            "name": "notify",
            "required": false,
            "example": true,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Email address to deliver the completion notification to. (Endpoint: `runCustomAutomation`.)",
            "in": "query",
            "name": "email",
            "required": false,
            "example": "user@example.com",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `runCustomAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Run Custom Automation — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "148",
                    "message": "Automation running, please check logs for progress and /private/files/automation/debug for result",
                    "result": "success"
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "148",
                      "message": "Automation running, please check logs for progress and /private/files/automation/debug for result",
                      "result": "success"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Queue a custom automation for execution. Submit `debug=true` for a test run. For live runs omit the `debug` argument or set it to `false`. Use the `diff` argument to control full or diff execution mode. Submit `notify=true` and `email` with a valid email address to receive notification when the run completes.",
        "operationId": "runCustomAutomation",
        "summary": "Run Custom Automation"
      }
    },
    "/v3/automations/custom/{id}/status": {
      "delete": {
        "parameters": [
          {
            "description": "The automation ID — required by `resetCustomAutomationStatus`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 148,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Status flavour to reset for the custom automation — one of `debug` (clears the last debug-run state) or `prod` (clears the last production-run state).",
            "in": "query",
            "name": "type",
            "required": true,
            "example": "debug",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `resetCustomAutomationStatus`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Reset Custom Automation Status — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "148",
                    "results": {
                      "successful": [
                        {
                          "code": 3,
                          "message": "Automation debug status reset successfully"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "148",
                      "results": {
                        "successful": [
                          {
                            "code": 3,
                            "message": "Automation debug status reset successfully"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Reset the run status for a custom automation. The `type` query parameter is required and must be either `debug` or `prod`.",
        "operationId": "resetCustomAutomationStatus",
        "summary": "Reset Custom Automation Status"
      }
    },
    "/v3/automations/installed": {
      "get": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `listInstalledAutomations`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "List Installed Automations — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "automations": [
                      {
                        "parameters": [
                          {
                            "description": "Turn14 API Client ID",
                            "encrypted": 1,
                            "name": "turn14 id",
                            "value": "***"
                          },
                          {
                            "description": "Turn14 API Client Secret",
                            "encrypted": 1,
                            "name": "turn14 secret",
                            "value": "***"
                          }
                        ],
                        "action": "import",
                        "active": true,
                        "created": "2019-11-02 00:10:00",
                        "id": "649",
                        "last_modified": "2019-11-02 00:10:00",
                        "name": "SKU ID Import",
                        "schedule": "0 0 * * *",
                        "shared_id": "658",
                        "slug": "turn14-sku-id-import",
                        "type": "products",
                        "user_id": "1019",
                        "vendor": "Turn14"
                      }
                    ],
                    "count": "1",
                    "timestamp": "2019-11-02T00:15:00Z"
                  },
                  "properties": {
                    "automations": {
                      "items": {
                        "properties": {
                          "parameters": {
                            "items": {
                              "properties": {
                                "description": {
                                  "type": "string"
                                },
                                "encrypted": {
                                  "type": "number"
                                },
                                "name": {
                                  "type": "string"
                                },
                                "value": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                }
                              },
                              "required": [
                                "name",
                                "value",
                                "encrypted",
                                "description"
                              ],
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "action": {
                            "type": "string"
                          },
                          "active": {
                            "type": "boolean",
                            "description": "Whether the installed automation is enabled and eligible to run on its schedule."
                          },
                          "created": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          },
                          "last_modified": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "schedule": {
                            "type": "string"
                          },
                          "shared_id": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "slug": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "user_id": {
                            "type": "string"
                          },
                          "vendor": {
                            "type": "string"
                          }
                        },
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "count": {
                      "type": "string"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "automations": [
                        {
                          "parameters": [
                            {
                              "description": "Turn14 API Client ID",
                              "encrypted": 1,
                              "name": "turn14 id",
                              "value": "***"
                            },
                            {
                              "description": "Turn14 API Client Secret",
                              "encrypted": 1,
                              "name": "turn14 secret",
                              "value": "***"
                            }
                          ],
                          "action": "import",
                          "active": true,
                          "created": "2019-11-02 00:10:00",
                          "id": "649",
                          "last_modified": "2019-11-02 00:10:00",
                          "name": "SKU ID Import",
                          "schedule": "0 0 * * *",
                          "shared_id": "658",
                          "slug": "turn14-sku-id-import",
                          "type": "products",
                          "user_id": "1019",
                          "vendor": "Turn14"
                        }
                      ],
                      "count": "1",
                      "timestamp": "2019-11-02T00:15:00Z"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/InvalidParams"
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Returns a paginated list of installed (shared) automations for the authenticated user.",
        "operationId": "listInstalledAutomations",
        "summary": "List Installed Automations"
      },
      "post": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `installSharedAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "parameters": [
                    {
                      "encrypted": true,
                      "name": "turn14 id",
                      "value": "your-client-id"
                    },
                    {
                      "encrypted": true,
                      "name": "turn14 secret",
                      "value": "your-client-secret"
                    }
                  ],
                  "active": true,
                  "shared_id": 658
                },
                "properties": {
                  "parameters": {
                    "items": {
                      "properties": {
                        "encrypted": {
                          "type": "boolean"
                        },
                        "name": {
                          "type": "string"
                        },
                        "value": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "required": [
                        "name",
                        "value",
                        "encrypted"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "active": {
                    "type": "boolean"
                  },
                  "shared_id": {
                    "type": "number"
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Install Shared Automation — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": 649,
                    "results": {
                      "successful": [
                        {
                          "code": 1,
                          "message": "Automation created successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "number"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": 649,
                      "results": {
                        "successful": [
                          {
                            "code": 1,
                            "message": "Automation created successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Install a shared automation from the published marketplace. Requires the `shared_id` of the published automation.",
        "operationId": "installSharedAutomation",
        "summary": "Install Shared Automation"
      }
    },
    "/v3/automations/installed/{id}": {
      "delete": {
        "parameters": [
          {
            "description": "The installed automation ID — required by `deleteInstalledAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 649,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `deleteInstalledAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Delete Installed Automation — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "649",
                    "results": {
                      "successful": [
                        {
                          "code": 3,
                          "message": "Automation deleted successfully"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "649",
                      "results": {
                        "successful": [
                          {
                            "code": 3,
                            "message": "Automation deleted successfully"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Delete an installed automation.",
        "operationId": "deleteInstalledAutomation",
        "summary": "Delete Installed Automation"
      },
      "get": {
        "parameters": [
          {
            "description": "The installed automation ID — required by `getInstalledAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 649,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `getInstalledAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Get Installed Automation — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "automation": {
                      "parameters": [
                        {
                          "description": "Turn14 API Client ID",
                          "encrypted": 1,
                          "name": "turn14 id",
                          "value": "***"
                        },
                        {
                          "description": "Turn14 API Client Secret",
                          "encrypted": 1,
                          "name": "turn14 secret",
                          "value": "***"
                        }
                      ],
                      "action": "import",
                      "active": true,
                      "id": "649",
                      "name": "SKU ID Import",
                      "schedule": "0 0 * * *",
                      "shared_id": "658",
                      "slug": "turn14-sku-id-import",
                      "type": "products",
                      "user_id": "1019",
                      "vendor": "Turn14"
                    },
                    "status": {
                      "debug_files": [],
                      "last_run_finish_debug": false,
                      "last_run_finish_prod": "2019-11-01T00:02:30Z",
                      "last_run_id": null,
                      "last_run_start_debug": false,
                      "last_run_start_prod": "2019-11-01T00:00:05Z",
                      "last_run_success_debug": null,
                      "last_run_success_prod": true
                    },
                    "timestamp": "2019-11-02T00:15:00Z"
                  },
                  "properties": {
                    "automation": {
                      "properties": {
                        "parameters": {
                          "items": {
                            "properties": {
                              "description": {
                                "type": "string"
                              },
                              "encrypted": {
                                "type": "number"
                              },
                              "name": {
                                "type": "string"
                              },
                              "value": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "name",
                              "value",
                              "encrypted",
                              "description"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "action": {
                          "type": "string"
                        },
                        "active": {
                          "type": "boolean",
                          "description": "Whether this single installed automation is currently enabled."
                        },
                        "id": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "schedule": {
                          "type": "string"
                        },
                        "shared_id": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "slug": {
                          "type": "string"
                        },
                        "type": {
                          "type": "string"
                        },
                        "user_id": {
                          "type": "string"
                        },
                        "vendor": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "status": {
                      "properties": {
                        "debug_files": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "last_run_finish_debug": {
                          "type": "boolean"
                        },
                        "last_run_finish_prod": {
                          "type": "string"
                        },
                        "last_run_id": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "last_run_start_debug": {
                          "type": "boolean"
                        },
                        "last_run_start_prod": {
                          "type": "string"
                        },
                        "last_run_success_debug": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        },
                        "last_run_success_prod": {
                          "type": [
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "automation": {
                        "parameters": [
                          {
                            "description": "Turn14 API Client ID",
                            "encrypted": 1,
                            "name": "turn14 id",
                            "value": "***"
                          },
                          {
                            "description": "Turn14 API Client Secret",
                            "encrypted": 1,
                            "name": "turn14 secret",
                            "value": "***"
                          }
                        ],
                        "action": "import",
                        "active": true,
                        "id": "649",
                        "name": "SKU ID Import",
                        "schedule": "0 0 * * *",
                        "shared_id": "658",
                        "slug": "turn14-sku-id-import",
                        "type": "products",
                        "user_id": "1019",
                        "vendor": "Turn14"
                      },
                      "status": {
                        "debug_files": [],
                        "last_run_finish_debug": false,
                        "last_run_finish_prod": "2019-11-01T00:02:30Z",
                        "last_run_id": null,
                        "last_run_start_debug": false,
                        "last_run_start_prod": "2019-11-01T00:00:05Z",
                        "last_run_success_debug": null,
                        "last_run_success_prod": true
                      },
                      "timestamp": "2019-11-02T00:15:00Z"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Returns a single installed automation by ID, including its current run status.",
        "operationId": "getInstalledAutomation",
        "summary": "Get Installed Automation"
      },
      "patch": {
        "parameters": [
          {
            "description": "The installed automation ID — required by `updateInstalledAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 649,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `updateInstalledAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "parameters": [
                    {
                      "encrypted": true,
                      "name": "turn14 id",
                      "value": "updated-client-id"
                    }
                  ],
                  "active": true
                },
                "properties": {
                  "parameters": {
                    "items": {
                      "properties": {
                        "encrypted": {
                          "type": "boolean"
                        },
                        "name": {
                          "type": "string"
                        },
                        "value": {
                          "type": [
                            "string",
                            "null"
                          ]
                        }
                      },
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "active": {
                    "type": "boolean"
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Update Installed Automation — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "649",
                    "results": {
                      "successful": [
                        {
                          "code": 2,
                          "message": "Automation parameters updated successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "649",
                      "results": {
                        "successful": [
                          {
                            "code": 2,
                            "message": "Automation parameters updated successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Update an installed automation. Typically used to change the `active` state or update `parameters`.",
        "operationId": "updateInstalledAutomation",
        "summary": "Update Installed Automation"
      }
    },
    "/v3/automations/installed/{id}/parameters/{name}": {
      "put": {
        "parameters": [
          {
            "description": "The installed automation ID — required by `updateInstalledAutomationParameter`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 649,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "The parameter name (key in the automation parameters map). (Endpoint: `updateInstalledAutomationParameter`.)",
            "in": "path",
            "name": "name",
            "required": true,
            "example": "turn14 id",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `updateInstalledAutomationParameter`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "encrypted": true,
                  "value": "updated-client-id"
                },
                "properties": {
                  "encrypted": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": [
                      "string",
                      "null"
                    ]
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Update Installed Automation Parameter — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "649",
                    "results": {
                      "successful": [
                        {
                          "code": 2,
                          "message": "Automation parameters updated successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "649",
                      "results": {
                        "successful": [
                          {
                            "code": 2,
                            "message": "Automation parameters updated successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Update a single parameter on an installed automation. The parameter name is specified in the URL path, and the request body contains the parameter properties to update.",
        "operationId": "updateInstalledAutomationParameter",
        "summary": "Update Installed Automation Parameter"
      }
    },
    "/v3/automations/installed/{id}/run": {
      "get": {
        "parameters": [
          {
            "description": "The installed automation ID — required by `runInstalledAutomation`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 649,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Run the automation in debug (dry-run) mode without persisting side effects. (Endpoint: `runInstalledAutomation`.)",
            "in": "query",
            "name": "debug",
            "required": false,
            "example": true,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Limit to fields whose values changed since the previous run (true) versus running the full export (false). (Endpoint: `runInstalledAutomation`.)",
            "in": "query",
            "name": "diff",
            "required": false,
            "example": true,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Send a completion notification when the run finishes. (Endpoint: `runInstalledAutomation`.)",
            "in": "query",
            "name": "notify",
            "required": false,
            "example": true,
            "schema": {
              "type": "boolean"
            }
          },
          {
            "description": "Email address to deliver the completion notification to. (Endpoint: `runInstalledAutomation`.)",
            "in": "query",
            "name": "email",
            "required": false,
            "example": "user@example.com",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `runInstalledAutomation`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Run Installed Automation — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "649",
                    "message": "Automation running, please check logs for progress and /private/files/automation/debug for result",
                    "result": "success"
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "649",
                      "message": "Automation running, please check logs for progress and /private/files/automation/debug for result",
                      "result": "success"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Queue an installed automation for execution. Submit `debug=true` for a test run. For live runs omit the `debug` argument or set it to `false`. Use the `diff` argument to control full or diff execution mode.",
        "operationId": "runInstalledAutomation",
        "summary": "Run Installed Automation"
      }
    },
    "/v3/automations/installed/{id}/status": {
      "delete": {
        "parameters": [
          {
            "description": "The installed automation ID — required by `resetInstalledAutomationStatus`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": 649,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Status flavour to reset for the installed (shared) automation — one of `debug` (clears the last debug-run state) or `prod` (clears the last production-run state).",
            "in": "query",
            "name": "type",
            "required": true,
            "example": "debug",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `resetInstalledAutomationStatus`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Reset Installed Automation Status — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "id": "649",
                    "results": {
                      "successful": [
                        {
                          "code": 3,
                          "message": "Automation prod status reset successfully"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "id": "649",
                      "results": {
                        "successful": [
                          {
                            "code": 3,
                            "message": "Automation prod status reset successfully"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Reset the run status for an installed automation. The `type` query parameter is required and must be either `debug` or `prod`.",
        "operationId": "resetInstalledAutomationStatus",
        "summary": "Reset Installed Automation Status"
      }
    },
    "/v3/automations/published": {
      "get": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `listPublishedAutomations`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "List Published Automations — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "automations": [
                      {
                        "parameters": {
                          "turn14 id": {
                            "description": "Turn14 API Client ID",
                            "encrypted": 1,
                            "hidden_from_user": 0,
                            "value": null
                          },
                          "turn14 secret": {
                            "description": "Turn14 API Client Secret",
                            "encrypted": 1,
                            "hidden_from_user": 0,
                            "value": null
                          }
                        },
                        "action": "import",
                        "active": false,
                        "connection": {
                          "address": "https://api.turn14.com/v1/items?page=1",
                          "headers": {
                            "Content-Type": "application/json"
                          },
                          "method": "GET",
                          "oauth": {
                            "address": "https://api.turn14.com/v1/token",
                            "client_id": "{{turn14 id}}",
                            "client_secret": "{{turn14 secret}}",
                            "grant_type": "client_credentials",
                            "method": "POST"
                          },
                          "paginate": 1,
                          "type": "http",
                          "validate": false
                        },
                        "description": "",
                        "file_configs": [
                          {
                            "field_map": {
                              "turn14id": "$.data.*.id",
                              "turn14sku": "$.data.*.attributes.part_number"
                            },
                            "field_run": {
                              "upc": "$.data.*.attributes.barcode"
                            },
                            "identifier": "upc",
                            "jsonpath": 1,
                            "search": "turn14id:= upc:-=",
                            "skip_all": 1,
                            "update": "edit"
                          }
                        ],
                        "id": "658",
                        "logo": "https://assets.suredone.com/logos/automation/vendors/turn14-logo.png",
                        "name": "SKU ID Import",
                        "readme": "",
                        "schedule": "0 0 * * *",
                        "shared": true,
                        "shared_id": null,
                        "slug": "turn14-sku-id-import",
                        "type": "products",
                        "user_id": "000000",
                        "vendor": "Turn14"
                      }
                    ],
                    "count": "1",
                    "timestamp": "2019-11-02T00:05:46Z"
                  },
                  "properties": {
                    "automations": {
                      "items": {
                        "properties": {
                          "parameters": {
                            "properties": {
                              "turn14 id": {
                                "properties": {
                                  "description": {
                                    "type": "string"
                                  },
                                  "encrypted": {
                                    "type": "number"
                                  },
                                  "hidden_from_user": {
                                    "type": "number"
                                  },
                                  "value": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              },
                              "turn14 secret": {
                                "properties": {
                                  "description": {
                                    "type": "string"
                                  },
                                  "encrypted": {
                                    "type": "number"
                                  },
                                  "hidden_from_user": {
                                    "type": "number"
                                  },
                                  "value": {
                                    "type": [
                                      "string",
                                      "null"
                                    ]
                                  }
                                },
                                "type": "object"
                              }
                            },
                            "type": "object"
                          },
                          "action": {
                            "type": "string"
                          },
                          "active": {
                            "type": "boolean",
                            "description": "Whether the published automation is enabled by default when installed."
                          },
                          "connection": {
                            "properties": {
                              "address": {
                                "type": "string"
                              },
                              "headers": {
                                "properties": {
                                  "Content-Type": {
                                    "type": "string"
                                  }
                                },
                                "type": "object"
                              },
                              "method": {
                                "type": "string"
                              },
                              "oauth": {
                                "properties": {
                                  "address": {
                                    "type": "string"
                                  },
                                  "client_id": {
                                    "type": "string"
                                  },
                                  "client_secret": {
                                    "type": "string"
                                  },
                                  "grant_type": {
                                    "type": "string"
                                  },
                                  "method": {
                                    "type": "string"
                                  }
                                },
                                "type": "object"
                              },
                              "paginate": {
                                "type": "number"
                              },
                              "type": {
                                "type": "string"
                              },
                              "validate": {
                                "type": "boolean"
                              }
                            },
                            "type": "object"
                          },
                          "description": {
                            "type": "string"
                          },
                          "file_configs": {
                            "items": {
                              "properties": {
                                "field_map": {
                                  "properties": {
                                    "turn14id": {
                                      "type": "string"
                                    },
                                    "turn14sku": {
                                      "type": "string"
                                    }
                                  },
                                  "type": "object"
                                },
                                "field_run": {
                                  "properties": {
                                    "upc": {
                                      "type": "string"
                                    }
                                  },
                                  "type": "object"
                                },
                                "identifier": {
                                  "type": "string"
                                },
                                "jsonpath": {
                                  "type": "number"
                                },
                                "search": {
                                  "type": "string"
                                },
                                "skip_all": {
                                  "type": "number"
                                },
                                "update": {
                                  "type": "string"
                                }
                              },
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "id": {
                            "type": "string"
                          },
                          "logo": {
                            "type": "string"
                          },
                          "name": {
                            "type": "string"
                          },
                          "readme": {
                            "type": "string"
                          },
                          "schedule": {
                            "type": "string"
                          },
                          "shared": {
                            "type": "boolean",
                            "description": "Whether this published automation is publicly available in the SureDone marketplace."
                          },
                          "shared_id": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "slug": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string"
                          },
                          "user_id": {
                            "type": "string"
                          },
                          "vendor": {
                            "type": "string"
                          }
                        },
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "count": {
                      "type": "string"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "automations": [
                        {
                          "parameters": {
                            "turn14 id": {
                              "description": "Turn14 API Client ID",
                              "encrypted": 1,
                              "hidden_from_user": 0,
                              "value": null
                            },
                            "turn14 secret": {
                              "description": "Turn14 API Client Secret",
                              "encrypted": 1,
                              "hidden_from_user": 0,
                              "value": null
                            }
                          },
                          "action": "import",
                          "active": false,
                          "connection": {
                            "address": "https://api.turn14.com/v1/items?page=1",
                            "headers": {
                              "Content-Type": "application/json"
                            },
                            "method": "GET",
                            "oauth": {
                              "address": "https://api.turn14.com/v1/token",
                              "client_id": "{{turn14 id}}",
                              "client_secret": "{{turn14 secret}}",
                              "grant_type": "client_credentials",
                              "method": "POST"
                            },
                            "paginate": 1,
                            "type": "http",
                            "validate": false
                          },
                          "description": "",
                          "file_configs": [
                            {
                              "field_map": {
                                "turn14id": "$.data.*.id",
                                "turn14sku": "$.data.*.attributes.part_number"
                              },
                              "field_run": {
                                "upc": "$.data.*.attributes.barcode"
                              },
                              "identifier": "upc",
                              "jsonpath": 1,
                              "search": "turn14id:= upc:-=",
                              "skip_all": 1,
                              "update": "edit"
                            }
                          ],
                          "id": "658",
                          "logo": "https://assets.suredone.com/logos/automation/vendors/turn14-logo.png",
                          "name": "SKU ID Import",
                          "readme": "",
                          "schedule": "0 0 * * *",
                          "shared": true,
                          "shared_id": null,
                          "slug": "turn14-sku-id-import",
                          "type": "products",
                          "user_id": "000000",
                          "vendor": "Turn14"
                        }
                      ],
                      "count": "1",
                      "timestamp": "2019-11-02T00:05:46Z"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/InvalidParams"
          }
        },
        "tags": [
          "Automation Requests"
        ],
        "description": "Returns a list of all published (shared) automations available for installation from the SureDone marketplace.",
        "operationId": "listPublishedAutomations",
        "summary": "List Published Automations"
      }
    },
    "/v3/logs": {
      "post": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `loggingApiRequest`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Logging API Request — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "results": {
                      "found": 2295726,
                      "logs": [
                        {
                          "action": "edit",
                          "channel_id": "CTP6799",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8ddc",
                          "identifier": "CTP6799",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b1",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "ZZZ00CTP6798",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8ddd",
                          "identifier": "ZZZ00CTP6798",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b2",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP6787",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8de3",
                          "identifier": "CTP6787",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b3",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP6747",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8de7",
                          "identifier": "CTP6747",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b4",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP6699",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8dec",
                          "identifier": "CTP6699",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b5",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP6501",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8dfb",
                          "identifier": "CTP6501",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b6",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP6010",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8e07",
                          "identifier": "CTP6010",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b7",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP6002",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8e0a",
                          "identifier": "CTP6002",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b8",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP5998",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8e0b",
                          "identifier": "CTP5998",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a8b9",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        },
                        {
                          "action": "edit",
                          "channel_id": "CTP5968",
                          "context": "amazon",
                          "field_data": "",
                          "id": "57ba3d9ab3149971218b8e0e",
                          "identifier": "CTP5968",
                          "instance": 0,
                          "integration": "",
                          "job_id": "243427017034",
                          "log_level": 3,
                          "message": "{\"message\":\"successfully submitted inventory\"}",
                          "method": "sync",
                          "operation": "Update",
                          "request_id": "882f93ba-63c1-490a-b461-65109d72a9b1",
                          "result": "submitted",
                          "sd_acct_id": -1,
                          "sd_user_id": "XXXX",
                          "timestamp": "2016-08-21T23:47:35Z",
                          "type": "inventory"
                        }
                      ],
                      "records": "10",
                      "sort": "timestamp desc",
                      "start": 0
                    },
                    "timestamp": "2019-11-02T00:22:23Z"
                  },
                  "properties": {
                    "results": {
                      "properties": {
                        "found": {
                          "type": "number"
                        },
                        "logs": {
                          "items": {
                            "properties": {
                              "action": {
                                "type": "string"
                              },
                              "channel_id": {
                                "type": "string"
                              },
                              "context": {
                                "type": "string"
                              },
                              "field_data": {
                                "type": "string"
                              },
                              "id": {
                                "type": "string"
                              },
                              "identifier": {
                                "type": "string"
                              },
                              "instance": {
                                "type": "number"
                              },
                              "integration": {
                                "type": "string"
                              },
                              "job_id": {
                                "type": "string"
                              },
                              "log_level": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              },
                              "method": {
                                "type": "string"
                              },
                              "operation": {
                                "type": "string"
                              },
                              "request_id": {
                                "type": "string"
                              },
                              "result": {
                                "type": "string"
                              },
                              "sd_acct_id": {
                                "type": "number"
                              },
                              "sd_user_id": {
                                "type": "string"
                              },
                              "timestamp": {
                                "type": "string"
                              },
                              "type": {
                                "type": "string"
                              }
                            },
                            "required": [
                              "id",
                              "sd_user_id",
                              "log_level",
                              "message",
                              "timestamp",
                              "context",
                              "result",
                              "operation",
                              "action",
                              "type",
                              "identifier",
                              "job_id",
                              "sd_acct_id",
                              "integration",
                              "method",
                              "instance",
                              "channel_id",
                              "field_data",
                              "request_id"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "records": {
                          "type": "string"
                        },
                        "sort": {
                          "type": "string"
                        },
                        "start": {
                          "type": "number"
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "results": {
                        "found": 2295726,
                        "logs": [
                          {
                            "action": "edit",
                            "channel_id": "CTP6799",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8ddc",
                            "identifier": "CTP6799",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b1",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "ZZZ00CTP6798",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8ddd",
                            "identifier": "ZZZ00CTP6798",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b2",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP6787",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8de3",
                            "identifier": "CTP6787",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b3",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP6747",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8de7",
                            "identifier": "CTP6747",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b4",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP6699",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8dec",
                            "identifier": "CTP6699",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b5",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP6501",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8dfb",
                            "identifier": "CTP6501",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b6",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP6010",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8e07",
                            "identifier": "CTP6010",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b7",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP6002",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8e0a",
                            "identifier": "CTP6002",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b8",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP5998",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8e0b",
                            "identifier": "CTP5998",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a8b9",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          },
                          {
                            "action": "edit",
                            "channel_id": "CTP5968",
                            "context": "amazon",
                            "field_data": "",
                            "id": "57ba3d9ab3149971218b8e0e",
                            "identifier": "CTP5968",
                            "instance": 0,
                            "integration": "",
                            "job_id": "243427017034",
                            "log_level": 3,
                            "message": "{\"message\":\"successfully submitted inventory\"}",
                            "method": "sync",
                            "operation": "Update",
                            "request_id": "882f93ba-63c1-490a-b461-65109d72a9b1",
                            "result": "submitted",
                            "sd_acct_id": -1,
                            "sd_user_id": "XXXX",
                            "timestamp": "2016-08-21T23:47:35Z",
                            "type": "inventory"
                          }
                        ],
                        "records": "10",
                        "sort": "timestamp desc",
                        "start": 0
                      },
                      "timestamp": "2019-11-02T00:22:23Z"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Logging Requests"
        ],
        "description": "Search the SureDone application log index. Filters include severity, request id, user id, and time range; results are paginated.",
        "operationId": "loggingApiRequest",
        "summary": "Logging API Request"
      }
    },
    "/v3/orders": {
      "post": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `createOrder`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Create order (single or bulk) — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "oid": 353,
                    "results": {
                      "successful": [
                        {
                          "code": 1,
                          "message": "Order created successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "oid": {
                      "type": "number"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "oid": 353,
                      "results": {
                        "successful": [
                          {
                            "code": 1,
                            "message": "Order created successfully!"
                          }
                        ]
                      }
                    }
                  },
                  "bulkResponse": {
                    "value": {
                      "results": {
                        "successful": [
                          {
                            "oid": 354
                          },
                          {
                            "oid": 355
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Orders Requests"
        ],
        "description": "Creates one or more orders.\n\nTwo request shapes are accepted on this endpoint:\n\n- **Single order**: send the order fields directly in the JSON body.\n- **Bulk**: send a `header` array naming the columns and a `data` array of row tuples. The handler dispatches by the presence of `header` and `data` on the body.\n\nFor Update or Delete in bulk, send the same `header`/`data` shape using PATCH or DELETE on `/v3/orders` or `/v3/orders/{oid}` respectively.\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|oid|database ID, integer Must be supplied as identifier if “order” is not supplied as the identifier.|Yes for combine and split orders|\n|order|concatenation of “channel” and “ordernumber” which may be used as an identifier.||\n|ordernumber|order number, 100 character limit|Yes for create order|\n|channel|channel where the order was originated, 50 character limit||\n|instance|for orders imported via SureDone, the integration instance of the channel||\n|details|channel specific order details encoded as JSON such as item fees and delivery estimates||\n|date|date of order, converted to timezone configured in user’s SureDone settings||\n|dateutc|date or order in UTC||\n|dateupdated|last modified date of order, converted to timezone configured in SureDone account||\n|oidconsolidate|oid of archived or parent order in split and combined orders respectively||\n|gift|whether order was marked as a gift, boolean||\n|comments|order comments||\n|internalnotes|array of internal notes indexed by date of each note and encoded as JSON, sending in “internalnotesoverwrite” with a non-false value will overwrite all contents of this field||\n|status|order status with value one of “INCOMPLETE”, “READY”, “PENDING”, “ORDERED”, “DROPSHIPPED”, “COMPLETE” or “ARCHIVED”||\n|transactionid|transaction ID of the order, may correlate to a system identifier required by the channel for fulfilling the order||\n|correlationid|correlation ID for the payment of the order||\n|payment|payment method of the order||\n|paymentdate|date of payment to mark paymentstatus as COMPLETE||\n|paymentstatus|payment status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”||\n|shippingcarrier|buyer requested shipping carrier||\n|shippingservice|buyer requested shipping service||\n|shippingstatus|shipping status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”, sending “COMPLETE” will mark order as “shipped” on external channels||\n|total|order total including all taxes, shipping, handling and discounts|Yes for create order|\n|itemtotal|total of all order items||\n|shippingtotal|total of all shipping costs charged||\n|handlingtotal|total of all handling charged||\n|taxtotal|total of all taxes charged||\n|discounttotal|total of all discounts applied to order||\n|discountcode|code used to generate discount, 50 character limit||\n|currency|currency code of the order, 10 character limit||\n|account|account id of suredone storefront user||\n|archived|whether order has been “deleted”, boolean||\n|meta|miscellaneous order data JSON encoded including but not limited to raw payloads from channel imports and raw validated addresses||\n|email|email of customer||\n|billing|address data object for billing contact||\n|billing > country|country of billing contact||\n|billing > firstname|first name of billing contact||\n|billing > middlename|middle name of billing contact||\n|billing > lastname|last name of billing contact||\n|billing > company|company of billing contact||\n|billing > streetl|address street of billing contact||\n|billing > street2|address street 2 of billing contact||\n|billing > street3|address street 3 of billing contact||\n|billing > city|city of billing contact||\n|billing > stateprovince|state or province of billing contact||\n|billing > postalcode|postal code of billing contact||\n|billing > phone|phone number of billing contact||\n|billing > phone2|second phone number of billing contact||\n|shipping|address data object for shipping contact||\n|shipping > country|country of shipping contact||\n|shipping > firstname|first name of shipping contact||\n|shipping > middlename|middle name of shipping contact||\n|shipping > lastname|last name of shipping contact||\n|shipping > company|company of shipping contact||\n|shipping > streetl|address street of shipping contact||\n|shipping > street2|address street 2 of shipping contact||\n|shipping > street3|address street 3 of shipping contact||\n|shipping > city|city of shipping contact||\n|shipping > stateprovince|state or province of shipping contact||\n|shipping > postalcode|postal code of shipping contact||\n|shipping > phone|phone number of shipping contact||\n|shipping > phone2|second phone number of shipping contact||\n|items|order items object with one or more items, for products that exist in SureDone the following fields may be populated if they are missing during order creation|Yes for create order|\n|items > itemid|order item id, required for updating order item data||\n|items > sku|order item SKU, for products matching in SureDone this will be the “guid”, 100 character limit||\n|items > title|order item title, 500 character limit||\n|items > price|order item price||\n|items > quantity|order item quantity purchased||\n|items > media|order item image URL||\n|items > weight|order item weight||\n|items > dimweight|order item dim weight||\n|items > boxlength|order item box length||\n|items > boxwidth|order item box width||\n|items > boxheight|order item box height||\n|items > source|order item stock (warehouse) source as determined by product stock levels for products that exist in SureDone||\n|items > itemdetails|order item details JSON encoded including but not limited to full product payload for products existing in SureDone at the time of order creation||\n|items > itemstatus|order item status||\n|items > vendor|order item vendor||\n|items > purchaseorderid|order item purchase order for vendors and/or erp||\n|items > “customfields”|order item custom fields created||\n|shipments|order shipments object with one or more shipments||\n|shipments > shipid|order shipment id, required when updating an existing shipment post creation||\n|shipments > shipcarrier|order shipment carrier||\n|shipments > shipservice|order shipment service||\n|shipments > shiptracking|order shipment tracking number||\n|shipments > shipdate|date of order shipment||\n|shipments > shipcost|cost of order shipment||\n|shipments > shipuser|user who generated order shipment||\n|shipments > shipdetails|order shipment details JSON encoded including but not limited to fulfillment order item data in the case of short shipping||\n|shipments > shipdetails > items|order shipment package line item sku and quantity details, supported via API parameters `shipitems` or `shipsku` with `shipquantity`. Example `{\"shipments\":[{\"shiptracking\":\"123123123123\",\"shipdate\":\"NOW\",\"shipitems\":[{\"sku\":\"U8800ZZZ\",\"quantity\":1,\"fulfilled\":null}]}]}`. Optionally, you may use `shipskufield` and `shipskuvalue` to internally map `shipsku` to an `order.item.sku` via matching where `order.item.itemdetails.product.{shipskufield} = shipskuvalue`.||\n|refunds|order refunds object with one or more refunds||\n|refunds > refundid|order refund id, required for updating an order refund||\n|refunds > refunddate|date of order refund||\n|refunds > refunddetails|order refund details JSON encoded||\n|refunds > refunddetails > items|order refund line item sku and quantity details, supported via API parameters `refunditems` or `refundsku` with `refundquantity`.||\n|sold|whether to sync inventory for existing order items during order creation, boolean||",
        "operationId": "createOrder",
        "summary": "Create order (single or bulk)"
      },
      "get": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `getOrders`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Get orders — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "count": "1",
                    "orders": [
                      {
                        "account": null,
                        "archived": "0",
                        "billing": {
                          "city": "New York",
                          "company": "",
                          "country": "US",
                          "firstname": "Test",
                          "lastname": "User",
                          "middlename": "",
                          "phone": "877-773-6755",
                          "phone2": "",
                          "postalcode": "10010",
                          "stateprovince": "NY",
                          "street1": "115 E 23rd St",
                          "street2": "FL 3",
                          "street3": ""
                        },
                        "channel": "custom",
                        "comments": "Please ship all packages in one box.",
                        "correlationid": "",
                        "currency": "USD",
                        "date": "2018-06-27 13:38:25",
                        "dateupdated": "2018-06-27 13:38:25",
                        "dateupdatedutc": "2018-06-27 13:38:25",
                        "dateutc": "2018-06-27 13:38:25",
                        "details": {
                          "currency": [
                            "USD"
                          ],
                          "deliver-by-earliest": [
                            "2018-07-03 07:00:00"
                          ],
                          "deliver-by-latest": [
                            "2018-07-07 06:59:59"
                          ],
                          "handling": [
                            0
                          ],
                          "itemfee": [
                            "1.58"
                          ],
                          "ship-by-earliest": [
                            "2018-06-28 07:00:00"
                          ],
                          "ship-by-latest": [
                            "2018-06-29 06:59:59"
                          ],
                          "shipping": [
                            0
                          ],
                          "shipservice": [
                            "Standard"
                          ],
                          "shiptax": [
                            0
                          ],
                          "tax": [
                            0
                          ]
                        },
                        "discountcode": "",
                        "discounttotal": "0.00",
                        "email": "demo@suredone.com",
                        "gift": "0",
                        "handlingtotal": "0.00",
                        "instance": "0",
                        "internalnotes": {
                          "2018-08-11T16:22:49": "This is a great customer"
                        },
                        "ip": "",
                        "items": [
                          {
                            "boxheight": "0.50",
                            "boxlength": "1.00",
                            "boxwidth": "2.50",
                            "dimweight": "1.56",
                            "itemdetails": {
                              "order-item-id": "30090115962746",
                              "product": {
                                "tags": "",
                                "active": "0",
                                "actualcost": "219.99",
                                "amzn2asin": "",
                                "amzn2category": "0",
                                "amzn2categorypath": "",
                                "amzn2currency": "",
                                "amzn2fba": "",
                                "amzn2itemtype": "0",
                                "amzn2options": null,
                                "amzn2parentbrand": "",
                                "amzn2parentbullets": "",
                                "amzn2parentdescription": "",
                                "amzn2parentimage": "",
                                "amzn2parenttitle": "",
                                "amzn2price": "0.00",
                                "amzn2search": "",
                                "amzn2skip": "",
                                "amzn2sku": "",
                                "amzn2status": "",
                                "amzn2title": "",
                                "amzn3asin": "",
                                "amzn3category": "0",
                                "amzn3categorypath": "",
                                "amzn3currency": "",
                                "amzn3fba": "",
                                "amzn3itemtype": "0",
                                "amzn3options": null,
                                "amzn3parentbrand": "",
                                "amzn3parentbullets": "",
                                "amzn3parentdescription": "",
                                "amzn3parentimage": "",
                                "amzn3parenttitle": "",
                                "amzn3price": "0.00",
                                "amzn3search": "",
                                "amzn3skip": "",
                                "amzn3sku": "",
                                "amzn3status": "",
                                "amzn3title": "",
                                "amznasin": "",
                                "amzncategory": "0",
                                "amzncategorypath": "",
                                "amzncurrency": "",
                                "amznfba": "{\"status\":\"switch_off\",\"fulfillment_center\":\"\"}",
                                "amznitemtype": "0",
                                "amznoptions": {
                                  "categorypath": "",
                                  "parentbrand": "",
                                  "parentbullets": "",
                                  "parentdescription": "",
                                  "parentimage": "",
                                  "parenttitle": "",
                                  "skip": "alwaysSend"
                                },
                                "amznparentbrand": "",
                                "amznparentbullets": "",
                                "amznparentdescription": "",
                                "amznparentimage": "",
                                "amznparenttitle": "",
                                "amznprice": "0.00",
                                "amznsearch": "",
                                "amznskip": "alwaysSend",
                                "amznsku": "",
                                "amznstatus": "",
                                "amzntitle": "",
                                "asset": "",
                                "atest3": "",
                                "bandsize": "",
                                "bccf1": "",
                                "bccustom1": "",
                                "bccustom10": "",
                                "bccustom11": "",
                                "bccustom12": "",
                                "bccustom13": "",
                                "bccustom14": "",
                                "bccustom15": "",
                                "bccustom16": "",
                                "bccustom17": "",
                                "bccustom2": "",
                                "bccustom3": "",
                                "bccustom4": "",
                                "bccustom5": "",
                                "bccustom6": "",
                                "bccustom7": "",
                                "bccustom8": "",
                                "bccustom9": "",
                                "bcf1": "",
                                "bcnewcf1": "",
                                "bcnewcf2": "",
                                "bcnewcf3": "",
                                "bcnewcf4": "",
                                "bcnewcf5": "",
                                "bcnewcf6": "",
                                "bcnewcf7": "",
                                "bcnewcfa": "",
                                "bcnewcfb": "",
                                "bcnewcfc": "",
                                "bcnewcfd": "",
                                "bcnewcfe": "",
                                "bcnewcff": "",
                                "bcnewcfg": "",
                                "bcnewcfh": "",
                                "bcnewcfi": "",
                                "bctest1": "",
                                "bctest2": "",
                                "bctest3": "",
                                "bctest4": "",
                                "bigcommerce2availability": "",
                                "bigcommerce2availabilitydescription": "",
                                "bigcommerce2avalaraproducttaxcode": "",
                                "bigcommerce2binpickingnumber": "",
                                "bigcommerce2brandid": "",
                                "bigcommerce2calculatedprice": "",
                                "bigcommerce2categories": "",
                                "bigcommerce2configurablefields": "",
                                "bigcommerce2costprice": "",
                                "bigcommerce2customfields": "",
                                "bigcommerce2datecreated": "",
                                "bigcommerce2datelastimported": "",
                                "bigcommerce2description": "",
                                "bigcommerce2discountrules": "",
                                "bigcommerce2downloads": "",
                                "bigcommerce2eventdateend": "",
                                "bigcommerce2eventdatefieldname": "",
                                "bigcommerce2eventdatestart": "",
                                "bigcommerce2eventdatetype": "",
                                "bigcommerce2fixedcostshippingprice": "",
                                "bigcommerce2images": "",
                                "bigcommerce2inventorywarninglevel": "",
                                "bigcommerce2isconditionshown": "",
                                "bigcommerce2isfeatured": "",
                                "bigcommerce2isfreeshipping": "",
                                "bigcommerce2isopengraphthumbnail": "",
                                "bigcommerce2ispreorderonly": "",
                                "bigcommerce2ispricehidden": "",
                                "bigcommerce2keywordfilter": "",
                                "bigcommerce2layoutfile": "",
                                "bigcommerce2listingid": "",
                                "bigcommerce2manageproductrules": "",
                                "bigcommerce2media": "",
                                "bigcommerce2metadescription": "",
                                "bigcommerce2metakeywords": "",
                                "bigcommerce2myobassetaccount": "",
                                "bigcommerce2myobexpenseaccount": "",
                                "bigcommerce2myobincomeaccount": "",
                                "bigcommerce2name": "",
                                "bigcommerce2opengraphdescription": "",
                                "bigcommerce2opengraphtitle": "",
                                "bigcommerce2opengraphtype": "",
                                "bigcommerce2options": null,
                                "bigcommerce2optionsetdisplay": "",
                                "bigcommerce2optionsetid": "",
                                "bigcommerce2orderquantitymaximum": "",
                                "bigcommerce2orderquantityminimum": "",
                                "bigcommerce2pagetitle": "",
                                "bigcommerce2path": "",
                                "bigcommerce2peachtreeglaccount": "",
                                "bigcommerce2preordermessage": "",
                                "bigcommerce2preorderreleasedate": "",
                                "bigcommerce2price": "",
                                "bigcommerce2pricehiddenlabel": "",
                                "bigcommerce2productrule": "",
                                "bigcommerce2ratingcount": "",
                                "bigcommerce2ratingtotal": "",
                                "bigcommerce2relatedproducts": "",
                                "bigcommerce2retailprice": "",
                                "bigcommerce2saleprice": "",
                                "bigcommerce2searchkeywords": "",
                                "bigcommerce2skip": "",
                                "bigcommerce2sku": "",
                                "bigcommerce2skuid": "",
                                "bigcommerce2taxclassid": "",
                                "bigcommerce2totalsold": "",
                                "bigcommerce2type": "",
                                "bigcommerce2url": "",
                                "bigcommerce2videos": "",
                                "bigcommerce2viewcount": "",
                                "bigcommerce2warranty": "",
                                "bigcommerceavailability": "",
                                "bigcommerceavailabilitydescription": "",
                                "bigcommerceavalaraproducttaxcode": "",
                                "bigcommercebinpickingnumber": "",
                                "bigcommercebrandid": "",
                                "bigcommercecalculatedprice": "",
                                "bigcommercecategories": "",
                                "bigcommerceconfigurablefields": "",
                                "bigcommercecostprice": "",
                                "bigcommercecustomfields": "[]",
                                "bigcommercedatecreated": "",
                                "bigcommercedatelastimported": "",
                                "bigcommercedescription": "",
                                "bigcommercediscountrules": "",
                                "bigcommercedownloads": "",
                                "bigcommerceeventdateend": "",
                                "bigcommerceeventdatefieldname": "",
                                "bigcommerceeventdatestart": "",
                                "bigcommerceeventdatetype": "",
                                "bigcommercefixedcostshippingprice": "",
                                "bigcommerceimages": "",
                                "bigcommerceinventorywarninglevel": "",
                                "bigcommerceisconditionshown": "",
                                "bigcommerceisfeatured": "",
                                "bigcommerceisfreeshipping": "",
                                "bigcommerceisopengraphthumbnail": "",
                                "bigcommerceispreorderonly": "",
                                "bigcommerceispricehidden": "",
                                "bigcommercekeywordfilter": "",
                                "bigcommercelayoutfile": "",
                                "bigcommercelistingid": "",
                                "bigcommercemanageproductrules": "",
                                "bigcommercemedia": "",
                                "bigcommercemetadescription": "",
                                "bigcommercemetakeywords": "",
                                "bigcommercemyobassetaccount": "",
                                "bigcommercemyobexpenseaccount": "",
                                "bigcommercemyobincomeaccount": "",
                                "bigcommercename": "",
                                "bigcommerceopengraphdescription": "",
                                "bigcommerceopengraphtitle": "",
                                "bigcommerceopengraphtype": "",
                                "bigcommerceoptions": {
                                  "availability": "",
                                  "availability_description": "",
                                  "avalara_product_tax_code": "",
                                  "bin_picking_number": "",
                                  "brand_id": "",
                                  "calculated_price": "",
                                  "categories": "",
                                  "configurable_fields": "",
                                  "cost_price": "",
                                  "custom_fields": [],
                                  "date_created": "",
                                  "date_last_imported": "",
                                  "description": "",
                                  "discount_rules": "",
                                  "downloads": "",
                                  "event_date_end": "",
                                  "event_date_field_name": "",
                                  "event_date_start": "",
                                  "event_date_type": "",
                                  "fixed_cost_shipping_price": "",
                                  "images": "",
                                  "inventory_warning_level": "",
                                  "is_condition_shown": "",
                                  "is_featured": "",
                                  "is_free_shipping": "",
                                  "is_open_graph_thumbnail": "",
                                  "is_preorder_only": "",
                                  "is_price_hidden": "",
                                  "keyword_filter": "",
                                  "layout_file": "",
                                  "manage_product_rules": "",
                                  "media": "",
                                  "meta_description": "",
                                  "meta_keywords": "",
                                  "myob_asset_account": "",
                                  "myob_expense_account": "",
                                  "myob_income_account": "",
                                  "name": "",
                                  "open_graph_description": "",
                                  "open_graph_title": "",
                                  "open_graph_type": "",
                                  "option_set_display": "",
                                  "option_set_id": "",
                                  "order_quantity_maximum": "",
                                  "order_quantity_minimum": "",
                                  "page_title": "",
                                  "path": "https://store-988ysg.mybigcommerce.com",
                                  "peachtree_gl_account": "",
                                  "preorder_message": "",
                                  "preorder_release_date": "",
                                  "price": "",
                                  "price_hidden_label": "",
                                  "product_rule": "",
                                  "rating_count": "",
                                  "rating_total": "",
                                  "related_products": "",
                                  "retail_price": "",
                                  "sale_price": "",
                                  "search_keywords": "",
                                  "skip": "",
                                  "sku_id": "",
                                  "tax_class_id": "",
                                  "total_sold": "",
                                  "type": "",
                                  "url": "/products/",
                                  "videos": "",
                                  "view_count": "",
                                  "warranty": ""
                                },
                                "bigcommerceoptionsetdisplay": "",
                                "bigcommerceoptionsetid": "",
                                "bigcommerceorderquantitymaximum": "",
                                "bigcommerceorderquantityminimum": "",
                                "bigcommercepagetitle": "",
                                "bigcommercepath": "https://store-988ysg.mybigcommerce.com",
                                "bigcommercepeachtreeglaccount": "",
                                "bigcommercepreordermessage": "",
                                "bigcommercepreorderreleasedate": "",
                                "bigcommerceprice": "",
                                "bigcommercepricehiddenlabel": "",
                                "bigcommerceproductrule": "",
                                "bigcommerceratingcount": "",
                                "bigcommerceratingtotal": "",
                                "bigcommercerelatedproducts": "",
                                "bigcommerceretailprice": "",
                                "bigcommercesaleprice": "",
                                "bigcommercesearchkeywords": "",
                                "bigcommerceskip": "",
                                "bigcommercesku": "U8800",
                                "bigcommerceskuid": "",
                                "bigcommercetaxclassid": "",
                                "bigcommercetotalsold": "",
                                "bigcommercetype": "",
                                "bigcommerceurl": "/products/",
                                "bigcommercevideos": "",
                                "bigcommerceviewcount": "",
                                "bigcommercewarranty": "",
                                "boing": "",
                                "bottomssizemens": "",
                                "bottomssizewomens": "",
                                "boxheight": "0.50",
                                "boxlength": "1.00",
                                "boxweight": "0.75",
                                "boxwidth": "2.50",
                                "brand": "AT&T",
                                "bulletpoint1": "",
                                "bulletpoint2": "",
                                "bulletpoint3": "",
                                "bulletpoint4": "",
                                "bulletpoint5": "",
                                "cache": "",
                                "category1": "mobile phones",
                                "category2": "android",
                                "category3": "",
                                "category4": "",
                                "category5": "",
                                "cf010301004": "",
                                "cf020301004": "",
                                "cf030301004": "",
                                "cf040301004": "",
                                "cf1": "",
                                "cf2": "",
                                "cf20160223001": "",
                                "cf20160223002": "",
                                "cf20160223004": "",
                                "cf20160223005": "",
                                "cf20160223007": "",
                                "cf20160223008": "",
                                "cf20160223009": "",
                                "cf20160223010": "",
                                "cf20160223020": "",
                                "cf20160223021": "",
                                "cf3": "",
                                "cf4": "",
                                "cf5": "",
                                "cf6": "",
                                "cf7": "",
                                "cf8": "",
                                "cf9": "",
                                "cfdn1": "",
                                "cfon1": "",
                                "click": "",
                                "clubtype": "",
                                "color": "Black",
                                "colors": "",
                                "condition": "New",
                                "content": "",
                                "cost": "0.00",
                                "countryregionofmanufactur": "",
                                "crazynewstyle": "",
                                "cupsize": "",
                                "customname": "",
                                "cut": "",
                                "date": "2013-07-29 15:06:20",
                                "datesold": "2018-07-18 01:11:40",
                                "dateupdated": "2018-08-05 00:38:50",
                                "deeey": "",
                                "department": "",
                                "description": "Android 2.2 operating system4G speedWi-FiMobile hotspot for up to 5users3.8\" WGA touch screen Requires a minimum data service starting at $15/month Early terminationfees will be prorated, starting at $325 minus $10 for each full month of service commitmentcompleted.",
                                "dimweight": "1.56",
                                "discountprice": "0.00",
                                "domain": "",
                                "dormanstock": "0",
                                "dressshirtsize": "",
                                "ean": "",
                                "ebay2adult": "",
                                "ebay2auctionsrelist": "",
                                "ebay2autopay": "",
                                "ebay2autorelistaction": "",
                                "ebay2autorelistcount": "",
                                "ebay2autorelistduration": "",
                                "ebay2autorelistmax": "",
                                "ebay2autorelistprice": "",
                                "ebay2bestofferautoacceptprice": 0,
                                "ebay2bestofferenabled": "",
                                "ebay2bestofferminimumprice": 0,
                                "ebay2buyitnow": 0,
                                "ebay2catid": "0",
                                "ebay2country": "",
                                "ebay2currency": "",
                                "ebay2description": "",
                                "ebay2dispatch": "",
                                "ebay2duration": "",
                                "ebay2endtime": "",
                                "ebay2fitmentcatalog": "",
                                "ebay2getitfast": "",
                                "ebay2holidayreturn": "",
                                "ebay2id": "0",
                                "ebay2internationalon": "",
                                "ebay2listing": "",
                                "ebay2location": "",
                                "ebay2minimumadvertisedprice": "",
                                "ebay2minimumadvertisedpriceexposure": "",
                                "ebay2options": {
                                  "autorelist": {
                                    "action": "",
                                    "count": "",
                                    "duration": "",
                                    "max": "",
                                    "price": ""
                                  },
                                  "bestoffer": {
                                    "autoacceptprice": 0,
                                    "minimumprice": 0
                                  },
                                  "buyitnow": 0,
                                  "country": "",
                                  "dispatch": null,
                                  "duration": "",
                                  "fitmentcatalog": "",
                                  "internationalon": "",
                                  "listing": "",
                                  "location": "",
                                  "minimumadvertisedprice": "",
                                  "minimumadvertisedpriceexposure": "",
                                  "paymentinstructions": "",
                                  "paymentmethods": [
                                    ""
                                  ],
                                  "paymentprofileid": "",
                                  "returnprofileid": "",
                                  "returns": {
                                    "description": ""
                                  },
                                  "salestaxpercent": 0,
                                  "scheduletime": "",
                                  "secondcategory": "",
                                  "shipping": {
                                    "calculated": {
                                      "handlingfee": 0,
                                      "internationalhandlingfee": 0,
                                      "postalcode": "",
                                      "shippingirregular": false,
                                      "shippingpackage": ""
                                    },
                                    "domestic": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      }
                                    },
                                    "excludes": [
                                      ""
                                    ],
                                    "international": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "5": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      }
                                    }
                                  },
                                  "shippingprofileid": "",
                                  "shiptolocations": [
                                    ""
                                  ],
                                  "siteid": "",
                                  "siteshipping": "",
                                  "skip": "alwaysSkip",
                                  "subtitle": "",
                                  "taxcategory": "",
                                  "template": ""
                                },
                                "ebay2paymentinstructions": "",
                                "ebay2paymentmethods": "",
                                "ebay2paymentprofileid": "",
                                "ebay2paypalemailaddress": "",
                                "ebay2prefiliteminfo": "",
                                "ebay2price": "0.00",
                                "ebay2private": "",
                                "ebay2promotionendtime": "",
                                "ebay2promotionstarttime": "",
                                "ebay2returnprofileid": "",
                                "ebay2returnsdescription": "",
                                "ebay2returnsrefund": "",
                                "ebay2returnsrestockingfeevalue": "",
                                "ebay2returnsreturnsaccepted": "",
                                "ebay2returnsreturnswithin": "",
                                "ebay2returnsshippingcostpaidby": "",
                                "ebay2salestaxpercent": 0,
                                "ebay2scheduletime": "",
                                "ebay2secondcategory": "",
                                "ebay2shippingcalculatedhandlingfee": 0,
                                "ebay2shippingcalculatedinternationalhandlingfee": 0,
                                "ebay2shippingcalculatedpostalcode": "",
                                "ebay2shippingcalculatedshippingirregular": false,
                                "ebay2shippingcalculatedshippingpackage": "",
                                "ebay2shippingdomestic1additionalcost": 0,
                                "ebay2shippingdomestic1cost": 0,
                                "ebay2shippingdomestic1cutofftime": "",
                                "ebay2shippingdomestic1expedited": "",
                                "ebay2shippingdomestic1freeshipping": "",
                                "ebay2shippingdomestic1handling": "",
                                "ebay2shippingdomestic1insurancecost": 0,
                                "ebay2shippingdomestic1localpickup": "",
                                "ebay2shippingdomestic1service": "",
                                "ebay2shippingdomestic1surcharge": 0,
                                "ebay2shippingdomestic1timemax": 0,
                                "ebay2shippingdomestic1timemin": 0,
                                "ebay2shippingdomestic2additionalcost": 0,
                                "ebay2shippingdomestic2cost": 0,
                                "ebay2shippingdomestic2cutofftime": "",
                                "ebay2shippingdomestic2expedited": "",
                                "ebay2shippingdomestic2freeshipping": "",
                                "ebay2shippingdomestic2handling": "",
                                "ebay2shippingdomestic2insurancecost": 0,
                                "ebay2shippingdomestic2localpickup": "",
                                "ebay2shippingdomestic2service": "",
                                "ebay2shippingdomestic2surcharge": 0,
                                "ebay2shippingdomestic2timemax": 0,
                                "ebay2shippingdomestic2timemin": 0,
                                "ebay2shippingdomestic3additionalcost": 0,
                                "ebay2shippingdomestic3cost": 0,
                                "ebay2shippingdomestic3cutofftime": "",
                                "ebay2shippingdomestic3expedited": "",
                                "ebay2shippingdomestic3freeshipping": "",
                                "ebay2shippingdomestic3handling": "",
                                "ebay2shippingdomestic3insurancecost": 0,
                                "ebay2shippingdomestic3localpickup": "",
                                "ebay2shippingdomestic3service": "",
                                "ebay2shippingdomestic3surcharge": 0,
                                "ebay2shippingdomestic3timemax": 0,
                                "ebay2shippingdomestic3timemin": 0,
                                "ebay2shippingdomestic4additionalcost": 0,
                                "ebay2shippingdomestic4cost": 0,
                                "ebay2shippingdomestic4cutofftime": "",
                                "ebay2shippingdomestic4expedited": "",
                                "ebay2shippingdomestic4freeshipping": "",
                                "ebay2shippingdomestic4handling": "",
                                "ebay2shippingdomestic4insurancecost": 0,
                                "ebay2shippingdomestic4localpickup": "",
                                "ebay2shippingdomestic4service": "",
                                "ebay2shippingdomestic4surcharge": 0,
                                "ebay2shippingdomestic4timemax": 0,
                                "ebay2shippingdomestic4timemin": 0,
                                "ebay2shippingexcludes": "",
                                "ebay2shippingglobal": "",
                                "ebay2shippingincludedintax": "",
                                "ebay2shippinginternational1additionalcost": 0,
                                "ebay2shippinginternational1cost": 0,
                                "ebay2shippinginternational1cutofftime": "",
                                "ebay2shippinginternational1handling": "",
                                "ebay2shippinginternational1insurancecost": 0,
                                "ebay2shippinginternational1location": "",
                                "ebay2shippinginternational1service": "",
                                "ebay2shippinginternational2additionalcost": 0,
                                "ebay2shippinginternational2cost": 0,
                                "ebay2shippinginternational2cutofftime": "",
                                "ebay2shippinginternational2handling": "",
                                "ebay2shippinginternational2insurancecost": 0,
                                "ebay2shippinginternational2location": "",
                                "ebay2shippinginternational2service": "",
                                "ebay2shippinginternational3additionalcost": 0,
                                "ebay2shippinginternational3cost": 0,
                                "ebay2shippinginternational3cutofftime": "",
                                "ebay2shippinginternational3handling": "",
                                "ebay2shippinginternational3insurancecost": 0,
                                "ebay2shippinginternational3location": "",
                                "ebay2shippinginternational3service": "",
                                "ebay2shippinginternational4additionalcost": 0,
                                "ebay2shippinginternational4cost": 0,
                                "ebay2shippinginternational4cutofftime": "",
                                "ebay2shippinginternational4handling": "",
                                "ebay2shippinginternational4insurancecost": 0,
                                "ebay2shippinginternational4location": "",
                                "ebay2shippinginternational4service": "",
                                "ebay2shippinginternational5additionalcost": 0,
                                "ebay2shippinginternational5cost": 0,
                                "ebay2shippinginternational5cutofftime": "",
                                "ebay2shippinginternational5handling": "",
                                "ebay2shippinginternational5insurancecost": 0,
                                "ebay2shippinginternational5location": "",
                                "ebay2shippinginternational5service": "",
                                "ebay2shippingprofileid": "",
                                "ebay2shippingratetabledom": "",
                                "ebay2shippingratetableintl": "",
                                "ebay2shippingtype": "",
                                "ebay2shiptolocations": "",
                                "ebay2siteid": "",
                                "ebay2siteshipping": "",
                                "ebay2skip": "alwaysSkip",
                                "ebay2sku": "",
                                "ebay2starttime": "",
                                "ebay2storeid": "0",
                                "ebay2storeid2": "0",
                                "ebay2subtitle": "",
                                "ebay2taxcategory": "",
                                "ebay2template": "",
                                "ebay2title": "",
                                "ebay2upcnot": "",
                                "ebay3adult": "",
                                "ebay3auctionsrelist": "",
                                "ebay3autopay": "",
                                "ebay3autorelistaction": "",
                                "ebay3autorelistcount": "",
                                "ebay3autorelistduration": "",
                                "ebay3autorelistmax": "",
                                "ebay3autorelistprice": "",
                                "ebay3bestofferautoacceptprice": 0,
                                "ebay3bestofferenabled": "",
                                "ebay3bestofferminimumprice": 0,
                                "ebay3buyitnow": 0,
                                "ebay3catid": "0",
                                "ebay3country": "",
                                "ebay3currency": "",
                                "ebay3description": "",
                                "ebay3dispatch": "",
                                "ebay3duration": "",
                                "ebay3endtime": "",
                                "ebay3fitmentcatalog": "",
                                "ebay3getitfast": "",
                                "ebay3holidayreturn": "",
                                "ebay3id": "0",
                                "ebay3internationalon": "",
                                "ebay3listing": "",
                                "ebay3location": "",
                                "ebay3minimumadvertisedprice": "",
                                "ebay3minimumadvertisedpriceexposure": "",
                                "ebay3options": {
                                  "autorelist": {
                                    "action": "",
                                    "count": "",
                                    "duration": "",
                                    "max": "",
                                    "price": ""
                                  },
                                  "bestoffer": {
                                    "autoacceptprice": 0,
                                    "minimumprice": 0
                                  },
                                  "buyitnow": 0,
                                  "country": "",
                                  "dispatch": null,
                                  "duration": "",
                                  "fitmentcatalog": "",
                                  "internationalon": "",
                                  "listing": "",
                                  "location": "",
                                  "minimumadvertisedprice": "",
                                  "minimumadvertisedpriceexposure": "",
                                  "paymentinstructions": "",
                                  "paymentmethods": [
                                    ""
                                  ],
                                  "paymentprofileid": "",
                                  "returnprofileid": "",
                                  "returns": {
                                    "description": ""
                                  },
                                  "salestaxpercent": 0,
                                  "scheduletime": "",
                                  "secondcategory": "",
                                  "shipping": {
                                    "calculated": {
                                      "handlingfee": 0,
                                      "internationalhandlingfee": 0,
                                      "postalcode": "",
                                      "shippingirregular": false,
                                      "shippingpackage": ""
                                    },
                                    "domestic": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      }
                                    },
                                    "excludes": [
                                      ""
                                    ],
                                    "international": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "5": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      }
                                    }
                                  },
                                  "shippingprofileid": "",
                                  "shiptolocations": [
                                    ""
                                  ],
                                  "siteid": "",
                                  "siteshipping": "",
                                  "subtitle": "",
                                  "taxcategory": "",
                                  "template": ""
                                },
                                "ebay3paymentinstructions": "",
                                "ebay3paymentmethods": "",
                                "ebay3paymentprofileid": "",
                                "ebay3paypalemailaddress": "",
                                "ebay3prefiliteminfo": "",
                                "ebay3price": "0.00",
                                "ebay3private": "",
                                "ebay3promotionendtime": "",
                                "ebay3promotionstarttime": "",
                                "ebay3returnprofileid": "",
                                "ebay3returnsdescription": "",
                                "ebay3returnsrefund": "",
                                "ebay3returnsrestockingfeevalue": "",
                                "ebay3returnsreturnsaccepted": "",
                                "ebay3returnsreturnswithin": "",
                                "ebay3returnsshippingcostpaidby": "",
                                "ebay3salestaxpercent": 0,
                                "ebay3scheduletime": "",
                                "ebay3secondcategory": "",
                                "ebay3shippingcalculatedhandlingfee": 0,
                                "ebay3shippingcalculatedinternationalhandlingfee": 0,
                                "ebay3shippingcalculatedpostalcode": "",
                                "ebay3shippingcalculatedshippingirregular": false,
                                "ebay3shippingcalculatedshippingpackage": "",
                                "ebay3shippingdomestic1additionalcost": 0,
                                "ebay3shippingdomestic1cost": 0,
                                "ebay3shippingdomestic1cutofftime": "",
                                "ebay3shippingdomestic1expedited": "",
                                "ebay3shippingdomestic1freeshipping": "",
                                "ebay3shippingdomestic1handling": "",
                                "ebay3shippingdomestic1insurancecost": 0,
                                "ebay3shippingdomestic1localpickup": "",
                                "ebay3shippingdomestic1service": "",
                                "ebay3shippingdomestic1surcharge": 0,
                                "ebay3shippingdomestic1timemax": 0,
                                "ebay3shippingdomestic1timemin": 0,
                                "ebay3shippingdomestic2additionalcost": 0,
                                "ebay3shippingdomestic2cost": 0,
                                "ebay3shippingdomestic2cutofftime": "",
                                "ebay3shippingdomestic2expedited": "",
                                "ebay3shippingdomestic2freeshipping": "",
                                "ebay3shippingdomestic2handling": "",
                                "ebay3shippingdomestic2insurancecost": 0,
                                "ebay3shippingdomestic2localpickup": "",
                                "ebay3shippingdomestic2service": "",
                                "ebay3shippingdomestic2surcharge": 0,
                                "ebay3shippingdomestic2timemax": 0,
                                "ebay3shippingdomestic2timemin": 0,
                                "ebay3shippingdomestic3additionalcost": 0,
                                "ebay3shippingdomestic3cost": 0,
                                "ebay3shippingdomestic3cutofftime": "",
                                "ebay3shippingdomestic3expedited": "",
                                "ebay3shippingdomestic3freeshipping": "",
                                "ebay3shippingdomestic3handling": "",
                                "ebay3shippingdomestic3insurancecost": 0,
                                "ebay3shippingdomestic3localpickup": "",
                                "ebay3shippingdomestic3service": "",
                                "ebay3shippingdomestic3surcharge": 0,
                                "ebay3shippingdomestic3timemax": 0,
                                "ebay3shippingdomestic3timemin": 0,
                                "ebay3shippingdomestic4additionalcost": 0,
                                "ebay3shippingdomestic4cost": 0,
                                "ebay3shippingdomestic4cutofftime": "",
                                "ebay3shippingdomestic4expedited": "",
                                "ebay3shippingdomestic4freeshipping": "",
                                "ebay3shippingdomestic4handling": "",
                                "ebay3shippingdomestic4insurancecost": 0,
                                "ebay3shippingdomestic4localpickup": "",
                                "ebay3shippingdomestic4service": "",
                                "ebay3shippingdomestic4surcharge": 0,
                                "ebay3shippingdomestic4timemax": 0,
                                "ebay3shippingdomestic4timemin": 0,
                                "ebay3shippingexcludes": "",
                                "ebay3shippingglobal": "",
                                "ebay3shippingincludedintax": "",
                                "ebay3shippinginternational1additionalcost": 0,
                                "ebay3shippinginternational1cost": 0,
                                "ebay3shippinginternational1cutofftime": "",
                                "ebay3shippinginternational1handling": "",
                                "ebay3shippinginternational1insurancecost": 0,
                                "ebay3shippinginternational1location": "",
                                "ebay3shippinginternational1service": "",
                                "ebay3shippinginternational2additionalcost": 0,
                                "ebay3shippinginternational2cost": 0,
                                "ebay3shippinginternational2cutofftime": "",
                                "ebay3shippinginternational2handling": "",
                                "ebay3shippinginternational2insurancecost": 0,
                                "ebay3shippinginternational2location": "",
                                "ebay3shippinginternational2service": "",
                                "ebay3shippinginternational3additionalcost": 0,
                                "ebay3shippinginternational3cost": 0,
                                "ebay3shippinginternational3cutofftime": "",
                                "ebay3shippinginternational3handling": "",
                                "ebay3shippinginternational3insurancecost": 0,
                                "ebay3shippinginternational3location": "",
                                "ebay3shippinginternational3service": "",
                                "ebay3shippinginternational4additionalcost": 0,
                                "ebay3shippinginternational4cost": 0,
                                "ebay3shippinginternational4cutofftime": "",
                                "ebay3shippinginternational4handling": "",
                                "ebay3shippinginternational4insurancecost": 0,
                                "ebay3shippinginternational4location": "",
                                "ebay3shippinginternational4service": "",
                                "ebay3shippinginternational5additionalcost": 0,
                                "ebay3shippinginternational5cost": 0,
                                "ebay3shippinginternational5cutofftime": "",
                                "ebay3shippinginternational5handling": "",
                                "ebay3shippinginternational5insurancecost": 0,
                                "ebay3shippinginternational5location": "",
                                "ebay3shippinginternational5service": "",
                                "ebay3shippingprofileid": "",
                                "ebay3shippingratetabledom": "",
                                "ebay3shippingratetableintl": "",
                                "ebay3shippingtype": "",
                                "ebay3shiptolocations": "",
                                "ebay3siteid": "",
                                "ebay3siteshipping": "",
                                "ebay3skip": "",
                                "ebay3sku": "",
                                "ebay3starttime": "",
                                "ebay3storeid": "0",
                                "ebay3storeid2": "0",
                                "ebay3subtitle": "",
                                "ebay3taxcategory": "",
                                "ebay3template": "",
                                "ebay3title": "",
                                "ebay3upcnot": "",
                                "ebayadult": "",
                                "ebayauctionsrelist": "",
                                "ebayautopay": "",
                                "ebayautorelistaction": "",
                                "ebayautorelistcount": "",
                                "ebayautorelistduration": "",
                                "ebayautorelistmax": "",
                                "ebayautorelistprice": "",
                                "ebaybestofferautoacceptprice": 0,
                                "ebaybestofferenabled": "",
                                "ebaybestofferminimumprice": 0,
                                "ebaybuyitnow": 0,
                                "ebaycatid": "0",
                                "ebaycountry": "",
                                "ebaycurrency": "",
                                "ebaydescription": "",
                                "ebaydispatch": "",
                                "ebayduration": "",
                                "ebayendtime": "",
                                "ebayepid": "0",
                                "ebayfitmentcatalog": "",
                                "ebaygetitfast": "",
                                "ebayholidayreturn": "",
                                "ebayid": "0",
                                "ebayinternationalon": "",
                                "ebayitemspecificsmapprice": "",
                                "ebayitemspecificswarranty": "",
                                "ebayktype": "",
                                "ebaylisting": "",
                                "ebaylocation": "",
                                "ebayminimumadvertisedprice": "",
                                "ebayminimumadvertisedpriceexposure": "",
                                "ebayoptions": {
                                  "autorelist": {
                                    "action": "",
                                    "count": "",
                                    "duration": "",
                                    "max": "",
                                    "price": ""
                                  },
                                  "bestoffer": {
                                    "autoacceptprice": 0,
                                    "minimumprice": 0
                                  },
                                  "buyitnow": 0,
                                  "country": "",
                                  "dispatch": null,
                                  "duration": "",
                                  "fitmentcatalog": "",
                                  "internationalon": "",
                                  "itemspecifics": [],
                                  "listing": "",
                                  "location": "",
                                  "minimumadvertisedprice": "",
                                  "minimumadvertisedpriceexposure": "",
                                  "paymentinstructions": "",
                                  "paymentmethods": [
                                    ""
                                  ],
                                  "paymentprofileid": "-1",
                                  "returnprofileid": "-1",
                                  "returns": {
                                    "description": ""
                                  },
                                  "salestaxpercent": 0,
                                  "scheduletime": "",
                                  "secondcategory": "",
                                  "shipping": {
                                    "calculated": {
                                      "handlingfee": 0,
                                      "internationalhandlingfee": 0,
                                      "postalcode": "",
                                      "shippingirregular": false,
                                      "shippingpackage": ""
                                    },
                                    "domestic": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      }
                                    },
                                    "excludes": [
                                      ""
                                    ],
                                    "international": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "5": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      }
                                    }
                                  },
                                  "shippingprofileid": "-1",
                                  "shiptolocations": [
                                    ""
                                  ],
                                  "siteid": "",
                                  "siteshipping": "",
                                  "skip": "alwaysSkip",
                                  "subtitle": "",
                                  "taxcategory": "",
                                  "template": ""
                                },
                                "ebaypaymentinstructions": "",
                                "ebaypaymentmethods": "",
                                "ebaypaymentprofileid": "-1",
                                "ebaypaypalemailaddress": "",
                                "ebayprefiliteminfo": "",
                                "ebayprice": "59.99",
                                "ebayprivate": "",
                                "ebayproductid": "",
                                "ebaypromotionendtime": "",
                                "ebaypromotionstarttime": "",
                                "ebayreturnprofileid": "-1",
                                "ebayreturnsdescription": "",
                                "ebayreturnsrefund": "",
                                "ebayreturnsrestockingfeevalue": "",
                                "ebayreturnsreturnsaccepted": "",
                                "ebayreturnsreturnswithin": "",
                                "ebayreturnsshippingcostpaidby": "",
                                "ebaysalestaxpercent": 0,
                                "ebayscheduletime": "",
                                "ebaysecondcategory": "",
                                "ebayshippingcalculatedhandlingfee": 0,
                                "ebayshippingcalculatedinternationalhandlingfee": 0,
                                "ebayshippingcalculatedpostalcode": "",
                                "ebayshippingcalculatedshippingirregular": false,
                                "ebayshippingcalculatedshippingpackage": "",
                                "ebayshippingdomestic1additionalcost": 0,
                                "ebayshippingdomestic1cost": 0,
                                "ebayshippingdomestic1cutofftime": "",
                                "ebayshippingdomestic1expedited": "",
                                "ebayshippingdomestic1freeshipping": "",
                                "ebayshippingdomestic1handling": "",
                                "ebayshippingdomestic1insurancecost": 0,
                                "ebayshippingdomestic1localpickup": "",
                                "ebayshippingdomestic1service": "",
                                "ebayshippingdomestic1surcharge": 0,
                                "ebayshippingdomestic1timemax": 0,
                                "ebayshippingdomestic1timemin": 0,
                                "ebayshippingdomestic2additionalcost": 0,
                                "ebayshippingdomestic2cost": 0,
                                "ebayshippingdomestic2cutofftime": "",
                                "ebayshippingdomestic2expedited": "",
                                "ebayshippingdomestic2freeshipping": "",
                                "ebayshippingdomestic2handling": "",
                                "ebayshippingdomestic2insurancecost": 0,
                                "ebayshippingdomestic2localpickup": "",
                                "ebayshippingdomestic2service": "",
                                "ebayshippingdomestic2surcharge": 0,
                                "ebayshippingdomestic2timemax": 0,
                                "ebayshippingdomestic2timemin": 0,
                                "ebayshippingdomestic3additionalcost": 0,
                                "ebayshippingdomestic3cost": 0,
                                "ebayshippingdomestic3cutofftime": "",
                                "ebayshippingdomestic3expedited": "",
                                "ebayshippingdomestic3freeshipping": "",
                                "ebayshippingdomestic3handling": "",
                                "ebayshippingdomestic3insurancecost": 0,
                                "ebayshippingdomestic3localpickup": "",
                                "ebayshippingdomestic3service": "",
                                "ebayshippingdomestic3surcharge": 0,
                                "ebayshippingdomestic3timemax": 0,
                                "ebayshippingdomestic3timemin": 0,
                                "ebayshippingdomestic4additionalcost": 0,
                                "ebayshippingdomestic4cost": 0,
                                "ebayshippingdomestic4cutofftime": "",
                                "ebayshippingdomestic4expedited": "",
                                "ebayshippingdomestic4freeshipping": "",
                                "ebayshippingdomestic4handling": "",
                                "ebayshippingdomestic4insurancecost": 0,
                                "ebayshippingdomestic4localpickup": "",
                                "ebayshippingdomestic4service": "",
                                "ebayshippingdomestic4surcharge": 0,
                                "ebayshippingdomestic4timemax": 0,
                                "ebayshippingdomestic4timemin": 0,
                                "ebayshippingexcludes": "",
                                "ebayshippingglobal": "",
                                "ebayshippingincludedintax": "",
                                "ebayshippinginternational1additionalcost": 0,
                                "ebayshippinginternational1cost": 0,
                                "ebayshippinginternational1cutofftime": "",
                                "ebayshippinginternational1handling": "",
                                "ebayshippinginternational1insurancecost": 0,
                                "ebayshippinginternational1location": "",
                                "ebayshippinginternational1service": "",
                                "ebayshippinginternational2additionalcost": 0,
                                "ebayshippinginternational2cost": 0,
                                "ebayshippinginternational2cutofftime": "",
                                "ebayshippinginternational2handling": "",
                                "ebayshippinginternational2insurancecost": 0,
                                "ebayshippinginternational2location": "",
                                "ebayshippinginternational2service": "",
                                "ebayshippinginternational3additionalcost": 0,
                                "ebayshippinginternational3cost": 0,
                                "ebayshippinginternational3cutofftime": "",
                                "ebayshippinginternational3handling": "",
                                "ebayshippinginternational3insurancecost": 0,
                                "ebayshippinginternational3location": "",
                                "ebayshippinginternational3service": "",
                                "ebayshippinginternational4additionalcost": 0,
                                "ebayshippinginternational4cost": 0,
                                "ebayshippinginternational4cutofftime": "",
                                "ebayshippinginternational4handling": "",
                                "ebayshippinginternational4insurancecost": 0,
                                "ebayshippinginternational4location": "",
                                "ebayshippinginternational4service": "",
                                "ebayshippinginternational5additionalcost": 0,
                                "ebayshippinginternational5cost": 0,
                                "ebayshippinginternational5cutofftime": "",
                                "ebayshippinginternational5handling": "",
                                "ebayshippinginternational5insurancecost": 0,
                                "ebayshippinginternational5location": "",
                                "ebayshippinginternational5service": "",
                                "ebayshippingprofileid": "-1",
                                "ebayshippingratetabledom": "",
                                "ebayshippingratetableintl": "",
                                "ebayshippingtype": "",
                                "ebayshiptolocations": "",
                                "ebaysiteid": "",
                                "ebaysiteshipping": "",
                                "ebayskip": "alwaysSkip",
                                "ebaysku": "",
                                "ebaystarttime": "",
                                "ebaystoreid": "0",
                                "ebaystoreid2": "0",
                                "ebaysubtitle": "",
                                "ebaytaxcategory": "",
                                "ebaytemplate": "",
                                "ebaytitle": "",
                                "ebayupcnot": "",
                                "etsycategoryid": "",
                                "etsydescription": "",
                                "etsyiscustomizable": "",
                                "etsyissupply": "",
                                "etsylistingid": "0",
                                "etsymaterials": "",
                                "etsynontaxable": "",
                                "etsyoccasion": "",
                                "etsyoptions": {
                                  "category_id": "",
                                  "description": "",
                                  "is_customizable": "",
                                  "is_supply": "",
                                  "materials": "",
                                  "non_taxable": "",
                                  "occasion": "",
                                  "opts_listing_id": "",
                                  "price": "",
                                  "recipient": "",
                                  "shipping_template_id": "",
                                  "shop_section_id": "",
                                  "skip": "",
                                  "state": "",
                                  "title": "",
                                  "variant_keys": "",
                                  "when_made": "",
                                  "who_made": ""
                                },
                                "etsyoptslistingid": "",
                                "etsyprice": "",
                                "etsyrecipient": "",
                                "etsyshippingtemplateid": "",
                                "etsyshopsectionid": "",
                                "etsyskip": "",
                                "etsystate": "",
                                "etsytitle": "",
                                "etsyvariantkeys": "",
                                "etsywhenmade": "",
                                "etsywhomade": "",
                                "exportlabel": "",
                                "featured": "0",
                                "flavor": "",
                                "floormatlogo": "",
                                "fulfillmentlatency": "0",
                                "galleryuri": "",
                                "geolocation": "",
                                "googlecategory": "",
                                "googleshopping": "1",
                                "googleshopurl": "",
                                "guid": "U8800",
                                "guidad": "",
                                "handlingfee": "0.00",
                                "hosierysize": "",
                                "htmltitle": "",
                                "id": "1",
                                "importfield": "",
                                "inseam": "",
                                "internationalshipping1": "0.00",
                                "intimatessleepsizewomens": "",
                                "isbn": "",
                                "iskit": "0",
                                "iskit_calculated_cost": false,
                                "iskit_calculated_price": false,
                                "jacketlength": "",
                                "jacketsize": "",
                                "keywords": "",
                                "longdescription": "<p>Stay connected to friends and family with this mobile phone thatfeatures 4G speed, Wi-Fi and an Android 2.2 operating system for enhanced productivity on the go.The 5.0MP digital camera features a 4x zoom and autofocus for clear photos. Requires a minimumdata service starting at $15/month. Early termination fees will be prorated, starting at $325 minus $10for each full month of service commitment completed.</p>",
                                "magento2attributeset": "",
                                "magento2categories": "",
                                "magento2description": "",
                                "magento2listingid": "",
                                "magento2metadescription": "",
                                "magento2metakeyword": "",
                                "magento2metatitle": "",
                                "magento2name": "",
                                "magento2oldlistingid": "",
                                "magento2oldsku": "",
                                "magento2options": {
                                  "attribute_set": "",
                                  "price": "59.99",
                                  "tax_class_id": ""
                                },
                                "magento2parentsku": "",
                                "magento2price": "59.99",
                                "magento2shortdescription": "",
                                "magento2skip": "",
                                "magento2sku": "",
                                "magento2storepath": "",
                                "magento2taxclassid": "",
                                "magento2urlkey": "",
                                "magento2urlpath": "",
                                "magentoattributeset": "",
                                "magentocategories": "",
                                "magentodescription": "",
                                "magentolistingid": "",
                                "magentometadescription": "",
                                "magentometakeyword": "",
                                "magentometatitle": "",
                                "magentoname": "",
                                "magentooldlistingid": "",
                                "magentooldsku": "",
                                "magentooptions": {
                                  "attribute_set": "",
                                  "categories": "",
                                  "description": "",
                                  "meta_description": "",
                                  "meta_keyword": "",
                                  "meta_title": "",
                                  "name": "",
                                  "old_listing_id": "",
                                  "old_sku": "",
                                  "parent_sku": "",
                                  "price": "",
                                  "short_description": "",
                                  "skip": "",
                                  "store_path": "",
                                  "tax_class_id": "",
                                  "url_key": "",
                                  "url_path": ""
                                },
                                "magentoparentsku": "",
                                "magentoprice": "",
                                "magentoshortdescription": "",
                                "magentoskip": "",
                                "magentosku": "",
                                "magentostorepath": "",
                                "magentotaxclassid": "",
                                "magentourlkey": "",
                                "magentourlpath": "",
                                "manufacturer": "",
                                "manufacturerpartnumber": "",
                                "mapprice": "0.00",
                                "material": "",
                                "maxstock": "0",
                                "media1": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                                "media10": "",
                                "media10alttext": "",
                                "media11alttext": "",
                                "media1alttext": "",
                                "media2": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black-2.jpg",
                                "media2alttext": "",
                                "media3": "",
                                "media3alttext": "",
                                "media4": "",
                                "media4alttext": "",
                                "media5": "",
                                "media5alttext": "",
                                "media6": "",
                                "media6alttext": "",
                                "media7": "",
                                "media7alttext": "",
                                "media8": "",
                                "media8alttext": "",
                                "media9": "",
                                "media9alttext": "",
                                "mediacount": "2",
                                "mediax": "",
                                "metadescription": "",
                                "metal": "",
                                "meyersku": "",
                                "meyerstock": "0",
                                "minstock": "0",
                                "model": "",
                                "modelnumber": "",
                                "mpn": "",
                                "msrp": "0.00",
                                "name": "yesatt",
                                "nameofnewfield": "",
                                "newbccffield1": "",
                                "notes": "",
                                "numberofitems": "",
                                "packagequantity": "",
                                "parenturi": "android-smartphones",
                                "pl20160304001": "",
                                "pl20160304003": "",
                                "preexistingcustomarc005": "",
                                "price": "59.99",
                                "productshippingtemplate": "",
                                "producttaxcode": "",
                                "producttype": "",
                                "registeredparameter": "",
                                "releasedate": "",
                                "ringsize": "",
                                "rule": "update",
                                "shelfdescription": "",
                                "shipping": "0.00",
                                "shippingadditional": "0.00",
                                "size": "8gb",
                                "sizemens": "",
                                "sizetype": "",
                                "sizewomens": "",
                                "sku": "U8800",
                                "skuvaultbrand": "",
                                "skuvaultclassification": "",
                                "skuvaultcode": "",
                                "skuvaultcost": "",
                                "skuvaultdescription": "",
                                "skuvaultiskit": "",
                                "skuvaultislisted": "",
                                "skuvaultlocationinfo": "",
                                "skuvaultoptions": {
                                  "Brand": "",
                                  "Classification": "",
                                  "Code": "",
                                  "Cost": "",
                                  "Description": "",
                                  "PartNumber": "",
                                  "QuantityAvailable": "",
                                  "RetailPrice": "",
                                  "SalePrice": "",
                                  "Supplier": "",
                                  "isListed": "",
                                  "iskit": "",
                                  "locationInfo": "",
                                  "skip": ""
                                },
                                "skuvaultpartnumber": "",
                                "skuvaultquantityavailable": "",
                                "skuvaultretailprice": "",
                                "skuvaultsaleprice": "",
                                "skuvaultskip": "",
                                "skuvaultsku": "",
                                "skuvaultsupplier": "",
                                "sleevelength": "",
                                "socksize": "",
                                "state": "active",
                                "status": "publish",
                                "stock": "1",
                                "style": "Matte",
                                "test": "",
                                "test2": "",
                                "testfield3": "",
                                "testx1": "",
                                "threadcolor": "",
                                "title": "AT&T Impulse 4G Mobile Phone - Black",
                                "total_stock": "4",
                                "totalsold": "5",
                                "transamericansku": "",
                                "transamericanstock": "0",
                                "tx1": "",
                                "tx10": "",
                                "tx11": "",
                                "tx12": "",
                                "tx13": "",
                                "tx3": "",
                                "type": "",
                                "upc": "",
                                "updatenotes": "",
                                "updatereason": "S*S*S*S*S",
                                "uri": "att-impulse-4g-mobile-phone-black-u8800",
                                "usertype": "",
                                "userupc": "",
                                "usshoesizemens": "",
                                "usshoesizewomens": "",
                                "variationtheme": "",
                                "vendorstock": "3",
                                "waistsize": "",
                                "walmartcategory": "",
                                "walmartdescription": "",
                                "walmartenqueued": "",
                                "walmartinprogress": "0",
                                "walmartislisted": "0",
                                "walmartmedia": "",
                                "walmartname": "",
                                "walmartoptions": {
                                  "category": "",
                                  "description": "",
                                  "enqueued": "",
                                  "media": "",
                                  "name": "",
                                  "price": "",
                                  "skip": "",
                                  "url": ""
                                },
                                "walmartprice": "",
                                "walmartskip": "",
                                "walmartsku": "",
                                "walmartstatus": "",
                                "walmarturl": "",
                                "warranty": "",
                                "weight": "0.50",
                                "wmcategory": "",
                                "wmtaxcode": "",
                                "working": ""
                              }
                            },
                            "itemid": "456",
                            "media": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                            "price": "13.17",
                            "quantity": "1",
                            "sku": "U8800",
                            "source": "",
                            "title": "mpulse 4G Mobile Phone Case",
                            "weight": "1.00"
                          }
                        ],
                        "itemtotal": "13.17",
                        "meta": [],
                        "oid": "353",
                        "oidconsolidate": "0",
                        "order": "custom12345",
                        "ordernumber": "12345",
                        "payment": "Visa",
                        "paymentdate": "2018-06-27 13:38:25",
                        "paymentstatus": "COMPLETE",
                        "refunds": [],
                        "shipments": [
                          {
                            "shipcarrier": "FedEx",
                            "shipcost": "0.00",
                            "shipdate": "2018-07-01 00:00:01",
                            "shipdetails": [],
                            "shipid": "49",
                            "shipservice": "",
                            "shiptracking": "9999999999",
                            "shipuser": ""
                          }
                        ],
                        "shipping": {
                          "city": "New York",
                          "company": "",
                          "country": "US",
                          "firstname": "Test",
                          "lastname": "User",
                          "middlename": "",
                          "phone": "877-773-6755",
                          "phone2": "",
                          "postalcode": "10010",
                          "stateprovince": "NY",
                          "street1": "115 E 23rd St",
                          "street2": "FL 3",
                          "street3": ""
                        },
                        "shippingcarrier": "FedEx",
                        "shippingservice": "Standard",
                        "shippingstatus": "COMPLETE",
                        "shippingtotal": "0.00",
                        "status": "COMPLETE",
                        "taxtotal": "0.00",
                        "total": "13.17",
                        "transactionid": "30090115962746"
                      }
                    ],
                    "timestamp": "2018-08-11T20:04:35Z"
                  },
                  "properties": {
                    "count": {
                      "type": "string"
                    },
                    "orders": {
                      "items": {
                        "properties": {
                          "account": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "archived": {
                            "type": "string"
                          },
                          "billing": {
                            "properties": {
                              "city": {
                                "type": "string"
                              },
                              "company": {
                                "type": "string"
                              },
                              "country": {
                                "type": "string"
                              },
                              "firstname": {
                                "type": "string"
                              },
                              "lastname": {
                                "type": "string"
                              },
                              "middlename": {
                                "type": "string"
                              },
                              "phone": {
                                "type": "string"
                              },
                              "phone2": {
                                "type": "string"
                              },
                              "postalcode": {
                                "type": "string"
                              },
                              "stateprovince": {
                                "type": "string"
                              },
                              "street1": {
                                "type": "string"
                              },
                              "street2": {
                                "type": "string"
                              },
                              "street3": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "channel": {
                            "type": "string"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "correlationid": {
                            "type": "string"
                          },
                          "currency": {
                            "type": "string"
                          },
                          "date": {
                            "type": "string"
                          },
                          "dateupdated": {
                            "type": "string"
                          },
                          "dateupdatedutc": {
                            "type": "string"
                          },
                          "dateutc": {
                            "type": "string"
                          },
                          "details": {
                            "properties": {
                              "currency": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "deliver-by-earliest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "deliver-by-latest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "handling": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              },
                              "itemfee": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "ship-by-earliest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "ship-by-latest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "shipping": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              },
                              "shipservice": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "shiptax": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              },
                              "tax": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              }
                            },
                            "type": "object"
                          },
                          "discountcode": {
                            "type": "string"
                          },
                          "discounttotal": {
                            "type": "string"
                          },
                          "email": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "description": "Buyer email of record. May be `null` on channel orders that do not surface a customer email (e.g. eBay payment-only flows)."
                          },
                          "gift": {
                            "type": "string"
                          },
                          "handlingtotal": {
                            "type": "string"
                          },
                          "instance": {
                            "type": "string"
                          },
                          "internalnotes": {
                            "description": "Map of UTC timestamp string (e.g. `2018-08-11T16:22:49`) to the note body. Returned as an empty JSON array (`[]`) when no notes are present — PHP serializes an empty associative array this way.",
                            "oneOf": [
                              {
                                "type": "object",
                                "additionalProperties": {
                                  "type": "string"
                                }
                              },
                              {
                                "type": "array",
                                "maxItems": 0
                              }
                            ]
                          },
                          "ip": {
                            "type": "string"
                          },
                          "items": {
                            "items": {
                              "properties": {
                                "boxheight": {
                                  "type": "string"
                                },
                                "boxlength": {
                                  "type": "string"
                                },
                                "boxwidth": {
                                  "type": "string"
                                },
                                "dimweight": {
                                  "type": "string"
                                },
                                "itemdetails": {
                                  "properties": {
                                    "order-item-id": {
                                      "type": "string"
                                    },
                                    "product": {
                                      "properties": {
                                        "tags": {
                                          "type": "string"
                                        },
                                        "active": {
                                          "type": "string"
                                        },
                                        "actualcost": {
                                          "type": "string"
                                        },
                                        "amzn2asin": {
                                          "type": "string"
                                        },
                                        "amzn2category": {
                                          "type": "string"
                                        },
                                        "amzn2categorypath": {
                                          "type": "string"
                                        },
                                        "amzn2currency": {
                                          "type": "string"
                                        },
                                        "amzn2fba": {
                                          "type": "string"
                                        },
                                        "amzn2itemtype": {
                                          "type": "string"
                                        },
                                        "amzn2options": {
                                          "type": [
                                            "object",
                                            "null"
                                          ]
                                        },
                                        "amzn2parentbrand": {
                                          "type": "string"
                                        },
                                        "amzn2parentbullets": {
                                          "type": "string"
                                        },
                                        "amzn2parentdescription": {
                                          "type": "string"
                                        },
                                        "amzn2parentimage": {
                                          "type": "string"
                                        },
                                        "amzn2parenttitle": {
                                          "type": "string"
                                        },
                                        "amzn2price": {
                                          "type": "string"
                                        },
                                        "amzn2search": {
                                          "type": "string"
                                        },
                                        "amzn2skip": {
                                          "type": "string"
                                        },
                                        "amzn2sku": {
                                          "type": "string"
                                        },
                                        "amzn2status": {
                                          "type": "string"
                                        },
                                        "amzn2title": {
                                          "type": "string"
                                        },
                                        "amzn3asin": {
                                          "type": "string"
                                        },
                                        "amzn3category": {
                                          "type": "string"
                                        },
                                        "amzn3categorypath": {
                                          "type": "string"
                                        },
                                        "amzn3currency": {
                                          "type": "string"
                                        },
                                        "amzn3fba": {
                                          "type": "string"
                                        },
                                        "amzn3itemtype": {
                                          "type": "string"
                                        },
                                        "amzn3options": {
                                          "type": [
                                            "object",
                                            "null"
                                          ]
                                        },
                                        "amzn3parentbrand": {
                                          "type": "string"
                                        },
                                        "amzn3parentbullets": {
                                          "type": "string"
                                        },
                                        "amzn3parentdescription": {
                                          "type": "string"
                                        },
                                        "amzn3parentimage": {
                                          "type": "string"
                                        },
                                        "amzn3parenttitle": {
                                          "type": "string"
                                        },
                                        "amzn3price": {
                                          "type": "string"
                                        },
                                        "amzn3search": {
                                          "type": "string"
                                        },
                                        "amzn3skip": {
                                          "type": "string"
                                        },
                                        "amzn3sku": {
                                          "type": "string"
                                        },
                                        "amzn3status": {
                                          "type": "string"
                                        },
                                        "amzn3title": {
                                          "type": "string"
                                        },
                                        "amznasin": {
                                          "type": "string"
                                        },
                                        "amzncategory": {
                                          "type": "string"
                                        },
                                        "amzncategorypath": {
                                          "type": "string"
                                        },
                                        "amzncurrency": {
                                          "type": "string"
                                        },
                                        "amznfba": {
                                          "type": "string"
                                        },
                                        "amznitemtype": {
                                          "type": "string"
                                        },
                                        "amznoptions": {
                                          "properties": {
                                            "categorypath": {
                                              "type": "string"
                                            },
                                            "parentbrand": {
                                              "type": "string"
                                            },
                                            "parentbullets": {
                                              "type": "string"
                                            },
                                            "parentdescription": {
                                              "type": "string"
                                            },
                                            "parentimage": {
                                              "type": "string"
                                            },
                                            "parenttitle": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "amznparentbrand": {
                                          "type": "string"
                                        },
                                        "amznparentbullets": {
                                          "type": "string"
                                        },
                                        "amznparentdescription": {
                                          "type": "string"
                                        },
                                        "amznparentimage": {
                                          "type": "string"
                                        },
                                        "amznparenttitle": {
                                          "type": "string"
                                        },
                                        "amznprice": {
                                          "type": "string"
                                        },
                                        "amznsearch": {
                                          "type": "string"
                                        },
                                        "amznskip": {
                                          "type": "string"
                                        },
                                        "amznsku": {
                                          "type": "string"
                                        },
                                        "amznstatus": {
                                          "type": "string"
                                        },
                                        "amzntitle": {
                                          "type": "string"
                                        },
                                        "asset": {
                                          "type": "string"
                                        },
                                        "atest3": {
                                          "type": "string"
                                        },
                                        "bandsize": {
                                          "type": "string"
                                        },
                                        "bccf1": {
                                          "type": "string"
                                        },
                                        "bccustom1": {
                                          "type": "string"
                                        },
                                        "bccustom10": {
                                          "type": "string"
                                        },
                                        "bccustom11": {
                                          "type": "string"
                                        },
                                        "bccustom12": {
                                          "type": "string"
                                        },
                                        "bccustom13": {
                                          "type": "string"
                                        },
                                        "bccustom14": {
                                          "type": "string"
                                        },
                                        "bccustom15": {
                                          "type": "string"
                                        },
                                        "bccustom16": {
                                          "type": "string"
                                        },
                                        "bccustom17": {
                                          "type": "string"
                                        },
                                        "bccustom2": {
                                          "type": "string"
                                        },
                                        "bccustom3": {
                                          "type": "string"
                                        },
                                        "bccustom4": {
                                          "type": "string"
                                        },
                                        "bccustom5": {
                                          "type": "string"
                                        },
                                        "bccustom6": {
                                          "type": "string"
                                        },
                                        "bccustom7": {
                                          "type": "string"
                                        },
                                        "bccustom8": {
                                          "type": "string"
                                        },
                                        "bccustom9": {
                                          "type": "string"
                                        },
                                        "bcf1": {
                                          "type": "string"
                                        },
                                        "bcnewcf1": {
                                          "type": "string"
                                        },
                                        "bcnewcf2": {
                                          "type": "string"
                                        },
                                        "bcnewcf3": {
                                          "type": "string"
                                        },
                                        "bcnewcf4": {
                                          "type": "string"
                                        },
                                        "bcnewcf5": {
                                          "type": "string"
                                        },
                                        "bcnewcf6": {
                                          "type": "string"
                                        },
                                        "bcnewcf7": {
                                          "type": "string"
                                        },
                                        "bcnewcfa": {
                                          "type": "string"
                                        },
                                        "bcnewcfb": {
                                          "type": "string"
                                        },
                                        "bcnewcfc": {
                                          "type": "string"
                                        },
                                        "bcnewcfd": {
                                          "type": "string"
                                        },
                                        "bcnewcfe": {
                                          "type": "string"
                                        },
                                        "bcnewcff": {
                                          "type": "string"
                                        },
                                        "bcnewcfg": {
                                          "type": "string"
                                        },
                                        "bcnewcfh": {
                                          "type": "string"
                                        },
                                        "bcnewcfi": {
                                          "type": "string"
                                        },
                                        "bctest1": {
                                          "type": "string"
                                        },
                                        "bctest2": {
                                          "type": "string"
                                        },
                                        "bctest3": {
                                          "type": "string"
                                        },
                                        "bctest4": {
                                          "type": "string"
                                        },
                                        "bigcommerce2availability": {
                                          "type": "string"
                                        },
                                        "bigcommerce2availabilitydescription": {
                                          "type": "string"
                                        },
                                        "bigcommerce2avalaraproducttaxcode": {
                                          "type": "string"
                                        },
                                        "bigcommerce2binpickingnumber": {
                                          "type": "string"
                                        },
                                        "bigcommerce2brandid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2calculatedprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2categories": {
                                          "type": "string"
                                        },
                                        "bigcommerce2configurablefields": {
                                          "type": "string"
                                        },
                                        "bigcommerce2costprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2customfields": {
                                          "type": "string"
                                        },
                                        "bigcommerce2datecreated": {
                                          "type": "string"
                                        },
                                        "bigcommerce2datelastimported": {
                                          "type": "string"
                                        },
                                        "bigcommerce2description": {
                                          "type": "string"
                                        },
                                        "bigcommerce2discountrules": {
                                          "type": "string"
                                        },
                                        "bigcommerce2downloads": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdateend": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdatefieldname": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdatestart": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdatetype": {
                                          "type": "string"
                                        },
                                        "bigcommerce2fixedcostshippingprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2images": {
                                          "type": "string"
                                        },
                                        "bigcommerce2inventorywarninglevel": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isconditionshown": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isfeatured": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isfreeshipping": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isopengraphthumbnail": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ispreorderonly": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ispricehidden": {
                                          "type": "string"
                                        },
                                        "bigcommerce2keywordfilter": {
                                          "type": "string"
                                        },
                                        "bigcommerce2layoutfile": {
                                          "type": "string"
                                        },
                                        "bigcommerce2listingid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2manageproductrules": {
                                          "type": "string"
                                        },
                                        "bigcommerce2media": {
                                          "type": "string"
                                        },
                                        "bigcommerce2metadescription": {
                                          "type": "string"
                                        },
                                        "bigcommerce2metakeywords": {
                                          "type": "string"
                                        },
                                        "bigcommerce2myobassetaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2myobexpenseaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2myobincomeaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2name": {
                                          "type": "string"
                                        },
                                        "bigcommerce2opengraphdescription": {
                                          "type": "string"
                                        },
                                        "bigcommerce2opengraphtitle": {
                                          "type": "string"
                                        },
                                        "bigcommerce2opengraphtype": {
                                          "type": "string"
                                        },
                                        "bigcommerce2options": {
                                          "type": [
                                            "object",
                                            "null"
                                          ]
                                        },
                                        "bigcommerce2optionsetdisplay": {
                                          "type": "string"
                                        },
                                        "bigcommerce2optionsetid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2orderquantitymaximum": {
                                          "type": "string"
                                        },
                                        "bigcommerce2orderquantityminimum": {
                                          "type": "string"
                                        },
                                        "bigcommerce2pagetitle": {
                                          "type": "string"
                                        },
                                        "bigcommerce2path": {
                                          "type": "string"
                                        },
                                        "bigcommerce2peachtreeglaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2preordermessage": {
                                          "type": "string"
                                        },
                                        "bigcommerce2preorderreleasedate": {
                                          "type": "string"
                                        },
                                        "bigcommerce2price": {
                                          "type": "string"
                                        },
                                        "bigcommerce2pricehiddenlabel": {
                                          "type": "string"
                                        },
                                        "bigcommerce2productrule": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ratingcount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ratingtotal": {
                                          "type": "string"
                                        },
                                        "bigcommerce2relatedproducts": {
                                          "type": "string"
                                        },
                                        "bigcommerce2retailprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2saleprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2searchkeywords": {
                                          "type": "string"
                                        },
                                        "bigcommerce2skip": {
                                          "type": "string"
                                        },
                                        "bigcommerce2sku": {
                                          "type": "string"
                                        },
                                        "bigcommerce2skuid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2taxclassid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2totalsold": {
                                          "type": "string"
                                        },
                                        "bigcommerce2type": {
                                          "type": "string"
                                        },
                                        "bigcommerce2url": {
                                          "type": "string"
                                        },
                                        "bigcommerce2videos": {
                                          "type": "string"
                                        },
                                        "bigcommerce2viewcount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2warranty": {
                                          "type": "string"
                                        },
                                        "bigcommerceavailability": {
                                          "type": "string"
                                        },
                                        "bigcommerceavailabilitydescription": {
                                          "type": "string"
                                        },
                                        "bigcommerceavalaraproducttaxcode": {
                                          "type": "string"
                                        },
                                        "bigcommercebinpickingnumber": {
                                          "type": "string"
                                        },
                                        "bigcommercebrandid": {
                                          "type": "string"
                                        },
                                        "bigcommercecalculatedprice": {
                                          "type": "string"
                                        },
                                        "bigcommercecategories": {
                                          "type": "string"
                                        },
                                        "bigcommerceconfigurablefields": {
                                          "type": "string"
                                        },
                                        "bigcommercecostprice": {
                                          "type": "string"
                                        },
                                        "bigcommercecustomfields": {
                                          "type": "string"
                                        },
                                        "bigcommercedatecreated": {
                                          "type": "string"
                                        },
                                        "bigcommercedatelastimported": {
                                          "type": "string"
                                        },
                                        "bigcommercedescription": {
                                          "type": "string"
                                        },
                                        "bigcommercediscountrules": {
                                          "type": "string"
                                        },
                                        "bigcommercedownloads": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdateend": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdatefieldname": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdatestart": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdatetype": {
                                          "type": "string"
                                        },
                                        "bigcommercefixedcostshippingprice": {
                                          "type": "string"
                                        },
                                        "bigcommerceimages": {
                                          "type": "string"
                                        },
                                        "bigcommerceinventorywarninglevel": {
                                          "type": "string"
                                        },
                                        "bigcommerceisconditionshown": {
                                          "type": "string"
                                        },
                                        "bigcommerceisfeatured": {
                                          "type": "string"
                                        },
                                        "bigcommerceisfreeshipping": {
                                          "type": "string"
                                        },
                                        "bigcommerceisopengraphthumbnail": {
                                          "type": "string"
                                        },
                                        "bigcommerceispreorderonly": {
                                          "type": "string"
                                        },
                                        "bigcommerceispricehidden": {
                                          "type": "string"
                                        },
                                        "bigcommercekeywordfilter": {
                                          "type": "string"
                                        },
                                        "bigcommercelayoutfile": {
                                          "type": "string"
                                        },
                                        "bigcommercelistingid": {
                                          "type": "string"
                                        },
                                        "bigcommercemanageproductrules": {
                                          "type": "string"
                                        },
                                        "bigcommercemedia": {
                                          "type": "string"
                                        },
                                        "bigcommercemetadescription": {
                                          "type": "string"
                                        },
                                        "bigcommercemetakeywords": {
                                          "type": "string"
                                        },
                                        "bigcommercemyobassetaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercemyobexpenseaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercemyobincomeaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercename": {
                                          "type": "string"
                                        },
                                        "bigcommerceopengraphdescription": {
                                          "type": "string"
                                        },
                                        "bigcommerceopengraphtitle": {
                                          "type": "string"
                                        },
                                        "bigcommerceopengraphtype": {
                                          "type": "string"
                                        },
                                        "bigcommerceoptions": {
                                          "properties": {
                                            "availability": {
                                              "type": "string"
                                            },
                                            "availability_description": {
                                              "type": "string"
                                            },
                                            "avalara_product_tax_code": {
                                              "type": "string"
                                            },
                                            "bin_picking_number": {
                                              "type": "string"
                                            },
                                            "brand_id": {
                                              "type": "string"
                                            },
                                            "calculated_price": {
                                              "type": "string"
                                            },
                                            "categories": {
                                              "type": "string"
                                            },
                                            "configurable_fields": {
                                              "type": "string"
                                            },
                                            "cost_price": {
                                              "type": "string"
                                            },
                                            "custom_fields": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "date_created": {
                                              "type": "string"
                                            },
                                            "date_last_imported": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "discount_rules": {
                                              "type": "string"
                                            },
                                            "downloads": {
                                              "type": "string"
                                            },
                                            "event_date_end": {
                                              "type": "string"
                                            },
                                            "event_date_field_name": {
                                              "type": "string"
                                            },
                                            "event_date_start": {
                                              "type": "string"
                                            },
                                            "event_date_type": {
                                              "type": "string"
                                            },
                                            "fixed_cost_shipping_price": {
                                              "type": "string"
                                            },
                                            "images": {
                                              "type": "string"
                                            },
                                            "inventory_warning_level": {
                                              "type": "string"
                                            },
                                            "is_condition_shown": {
                                              "type": "string"
                                            },
                                            "is_featured": {
                                              "type": "string"
                                            },
                                            "is_free_shipping": {
                                              "type": "string"
                                            },
                                            "is_open_graph_thumbnail": {
                                              "type": "string"
                                            },
                                            "is_preorder_only": {
                                              "type": "string"
                                            },
                                            "is_price_hidden": {
                                              "type": "string"
                                            },
                                            "keyword_filter": {
                                              "type": "string"
                                            },
                                            "layout_file": {
                                              "type": "string"
                                            },
                                            "manage_product_rules": {
                                              "type": "string"
                                            },
                                            "media": {
                                              "type": "string"
                                            },
                                            "meta_description": {
                                              "type": "string"
                                            },
                                            "meta_keywords": {
                                              "type": "string"
                                            },
                                            "myob_asset_account": {
                                              "type": "string"
                                            },
                                            "myob_expense_account": {
                                              "type": "string"
                                            },
                                            "myob_income_account": {
                                              "type": "string"
                                            },
                                            "name": {
                                              "type": "string"
                                            },
                                            "open_graph_description": {
                                              "type": "string"
                                            },
                                            "open_graph_title": {
                                              "type": "string"
                                            },
                                            "open_graph_type": {
                                              "type": "string"
                                            },
                                            "option_set_display": {
                                              "type": "string"
                                            },
                                            "option_set_id": {
                                              "type": "string"
                                            },
                                            "order_quantity_maximum": {
                                              "type": "string"
                                            },
                                            "order_quantity_minimum": {
                                              "type": "string"
                                            },
                                            "page_title": {
                                              "type": "string"
                                            },
                                            "path": {
                                              "type": "string"
                                            },
                                            "peachtree_gl_account": {
                                              "type": "string"
                                            },
                                            "preorder_message": {
                                              "type": "string"
                                            },
                                            "preorder_release_date": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "price_hidden_label": {
                                              "type": "string"
                                            },
                                            "product_rule": {
                                              "type": "string"
                                            },
                                            "rating_count": {
                                              "type": "string"
                                            },
                                            "rating_total": {
                                              "type": "string"
                                            },
                                            "related_products": {
                                              "type": "string"
                                            },
                                            "retail_price": {
                                              "type": "string"
                                            },
                                            "sale_price": {
                                              "type": "string"
                                            },
                                            "search_keywords": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "sku_id": {
                                              "type": "string"
                                            },
                                            "tax_class_id": {
                                              "type": "string"
                                            },
                                            "total_sold": {
                                              "type": "string"
                                            },
                                            "type": {
                                              "type": "string"
                                            },
                                            "url": {
                                              "type": "string"
                                            },
                                            "videos": {
                                              "type": "string"
                                            },
                                            "view_count": {
                                              "type": "string"
                                            },
                                            "warranty": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "bigcommerceoptionsetdisplay": {
                                          "type": "string"
                                        },
                                        "bigcommerceoptionsetid": {
                                          "type": "string"
                                        },
                                        "bigcommerceorderquantitymaximum": {
                                          "type": "string"
                                        },
                                        "bigcommerceorderquantityminimum": {
                                          "type": "string"
                                        },
                                        "bigcommercepagetitle": {
                                          "type": "string"
                                        },
                                        "bigcommercepath": {
                                          "type": "string"
                                        },
                                        "bigcommercepeachtreeglaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercepreordermessage": {
                                          "type": "string"
                                        },
                                        "bigcommercepreorderreleasedate": {
                                          "type": "string"
                                        },
                                        "bigcommerceprice": {
                                          "type": "string"
                                        },
                                        "bigcommercepricehiddenlabel": {
                                          "type": "string"
                                        },
                                        "bigcommerceproductrule": {
                                          "type": "string"
                                        },
                                        "bigcommerceratingcount": {
                                          "type": "string"
                                        },
                                        "bigcommerceratingtotal": {
                                          "type": "string"
                                        },
                                        "bigcommercerelatedproducts": {
                                          "type": "string"
                                        },
                                        "bigcommerceretailprice": {
                                          "type": "string"
                                        },
                                        "bigcommercesaleprice": {
                                          "type": "string"
                                        },
                                        "bigcommercesearchkeywords": {
                                          "type": "string"
                                        },
                                        "bigcommerceskip": {
                                          "type": "string"
                                        },
                                        "bigcommercesku": {
                                          "type": "string"
                                        },
                                        "bigcommerceskuid": {
                                          "type": "string"
                                        },
                                        "bigcommercetaxclassid": {
                                          "type": "string"
                                        },
                                        "bigcommercetotalsold": {
                                          "type": "string"
                                        },
                                        "bigcommercetype": {
                                          "type": "string"
                                        },
                                        "bigcommerceurl": {
                                          "type": "string"
                                        },
                                        "bigcommercevideos": {
                                          "type": "string"
                                        },
                                        "bigcommerceviewcount": {
                                          "type": "string"
                                        },
                                        "bigcommercewarranty": {
                                          "type": "string"
                                        },
                                        "boing": {
                                          "type": "string"
                                        },
                                        "bottomssizemens": {
                                          "type": "string"
                                        },
                                        "bottomssizewomens": {
                                          "type": "string"
                                        },
                                        "boxheight": {
                                          "type": "string"
                                        },
                                        "boxlength": {
                                          "type": "string"
                                        },
                                        "boxweight": {
                                          "type": "string"
                                        },
                                        "boxwidth": {
                                          "type": "string"
                                        },
                                        "brand": {
                                          "type": "string"
                                        },
                                        "bulletpoint1": {
                                          "type": "string"
                                        },
                                        "bulletpoint2": {
                                          "type": "string"
                                        },
                                        "bulletpoint3": {
                                          "type": "string"
                                        },
                                        "bulletpoint4": {
                                          "type": "string"
                                        },
                                        "bulletpoint5": {
                                          "type": "string"
                                        },
                                        "cache": {
                                          "type": "string"
                                        },
                                        "category1": {
                                          "type": "string"
                                        },
                                        "category2": {
                                          "type": "string"
                                        },
                                        "category3": {
                                          "type": "string"
                                        },
                                        "category4": {
                                          "type": "string"
                                        },
                                        "category5": {
                                          "type": "string"
                                        },
                                        "cf010301004": {
                                          "type": "string"
                                        },
                                        "cf020301004": {
                                          "type": "string"
                                        },
                                        "cf030301004": {
                                          "type": "string"
                                        },
                                        "cf040301004": {
                                          "type": "string"
                                        },
                                        "cf1": {
                                          "type": "string"
                                        },
                                        "cf2": {
                                          "type": "string"
                                        },
                                        "cf20160223001": {
                                          "type": "string"
                                        },
                                        "cf20160223002": {
                                          "type": "string"
                                        },
                                        "cf20160223004": {
                                          "type": "string"
                                        },
                                        "cf20160223005": {
                                          "type": "string"
                                        },
                                        "cf20160223007": {
                                          "type": "string"
                                        },
                                        "cf20160223008": {
                                          "type": "string"
                                        },
                                        "cf20160223009": {
                                          "type": "string"
                                        },
                                        "cf20160223010": {
                                          "type": "string"
                                        },
                                        "cf20160223020": {
                                          "type": "string"
                                        },
                                        "cf20160223021": {
                                          "type": "string"
                                        },
                                        "cf3": {
                                          "type": "string"
                                        },
                                        "cf4": {
                                          "type": "string"
                                        },
                                        "cf5": {
                                          "type": "string"
                                        },
                                        "cf6": {
                                          "type": "string"
                                        },
                                        "cf7": {
                                          "type": "string"
                                        },
                                        "cf8": {
                                          "type": "string"
                                        },
                                        "cf9": {
                                          "type": "string"
                                        },
                                        "cfdn1": {
                                          "type": "string"
                                        },
                                        "cfon1": {
                                          "type": "string"
                                        },
                                        "click": {
                                          "type": "string"
                                        },
                                        "clubtype": {
                                          "type": "string"
                                        },
                                        "color": {
                                          "type": "string"
                                        },
                                        "colors": {
                                          "type": "string"
                                        },
                                        "condition": {
                                          "type": "string"
                                        },
                                        "content": {
                                          "type": "string"
                                        },
                                        "cost": {
                                          "type": "string"
                                        },
                                        "countryregionofmanufactur": {
                                          "type": "string"
                                        },
                                        "crazynewstyle": {
                                          "type": "string"
                                        },
                                        "cupsize": {
                                          "type": "string"
                                        },
                                        "customname": {
                                          "type": "string"
                                        },
                                        "cut": {
                                          "type": "string"
                                        },
                                        "date": {
                                          "type": "string"
                                        },
                                        "datesold": {
                                          "type": "string"
                                        },
                                        "dateupdated": {
                                          "type": "string"
                                        },
                                        "deeey": {
                                          "type": "string"
                                        },
                                        "department": {
                                          "type": "string"
                                        },
                                        "description": {
                                          "type": "string"
                                        },
                                        "dimweight": {
                                          "type": "string"
                                        },
                                        "discountprice": {
                                          "type": "string"
                                        },
                                        "domain": {
                                          "type": "string"
                                        },
                                        "dormanstock": {
                                          "type": "string"
                                        },
                                        "dressshirtsize": {
                                          "type": "string"
                                        },
                                        "ean": {
                                          "type": "string"
                                        },
                                        "ebay2adult": {
                                          "type": "string"
                                        },
                                        "ebay2auctionsrelist": {
                                          "type": "string"
                                        },
                                        "ebay2autopay": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistaction": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistcount": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistduration": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistmax": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistprice": {
                                          "type": "string"
                                        },
                                        "ebay2bestofferautoacceptprice": {
                                          "type": "number"
                                        },
                                        "ebay2bestofferenabled": {
                                          "type": "string"
                                        },
                                        "ebay2bestofferminimumprice": {
                                          "type": "number"
                                        },
                                        "ebay2buyitnow": {
                                          "type": "number"
                                        },
                                        "ebay2catid": {
                                          "type": "string"
                                        },
                                        "ebay2country": {
                                          "type": "string"
                                        },
                                        "ebay2currency": {
                                          "type": "string"
                                        },
                                        "ebay2description": {
                                          "type": "string"
                                        },
                                        "ebay2dispatch": {
                                          "type": "string"
                                        },
                                        "ebay2duration": {
                                          "type": "string"
                                        },
                                        "ebay2endtime": {
                                          "type": "string"
                                        },
                                        "ebay2fitmentcatalog": {
                                          "type": "string"
                                        },
                                        "ebay2getitfast": {
                                          "type": "string"
                                        },
                                        "ebay2holidayreturn": {
                                          "type": "string"
                                        },
                                        "ebay2id": {
                                          "type": "string"
                                        },
                                        "ebay2internationalon": {
                                          "type": "string"
                                        },
                                        "ebay2listing": {
                                          "type": "string"
                                        },
                                        "ebay2location": {
                                          "type": "string"
                                        },
                                        "ebay2minimumadvertisedprice": {
                                          "type": "string"
                                        },
                                        "ebay2minimumadvertisedpriceexposure": {
                                          "type": "string"
                                        },
                                        "ebay2options": {
                                          "properties": {
                                            "autorelist": {
                                              "properties": {
                                                "action": {
                                                  "type": "string"
                                                },
                                                "count": {
                                                  "type": "string"
                                                },
                                                "duration": {
                                                  "type": "string"
                                                },
                                                "max": {
                                                  "type": "string"
                                                },
                                                "price": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "bestoffer": {
                                              "properties": {
                                                "autoacceptprice": {
                                                  "type": "number"
                                                },
                                                "minimumprice": {
                                                  "type": "number"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "buyitnow": {
                                              "type": "number"
                                            },
                                            "country": {
                                              "type": "string"
                                            },
                                            "dispatch": {
                                              "type": [
                                                "object",
                                                "null"
                                              ]
                                            },
                                            "duration": {
                                              "type": "string"
                                            },
                                            "fitmentcatalog": {
                                              "type": "string"
                                            },
                                            "internationalon": {
                                              "type": "string"
                                            },
                                            "listing": {
                                              "type": "string"
                                            },
                                            "location": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedprice": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedpriceexposure": {
                                              "type": "string"
                                            },
                                            "paymentinstructions": {
                                              "type": "string"
                                            },
                                            "paymentmethods": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "paymentprofileid": {
                                              "type": "string"
                                            },
                                            "returnprofileid": {
                                              "type": "string"
                                            },
                                            "returns": {
                                              "properties": {
                                                "description": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "salestaxpercent": {
                                              "type": "number"
                                            },
                                            "scheduletime": {
                                              "type": "string"
                                            },
                                            "secondcategory": {
                                              "type": "string"
                                            },
                                            "shipping": {
                                              "properties": {
                                                "calculated": {
                                                  "properties": {
                                                    "handlingfee": {
                                                      "type": "number"
                                                    },
                                                    "internationalhandlingfee": {
                                                      "type": "number"
                                                    },
                                                    "postalcode": {
                                                      "type": "string"
                                                    },
                                                    "shippingirregular": {
                                                      "type": "boolean"
                                                    },
                                                    "shippingpackage": {
                                                      "type": "string"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "domestic": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "excludes": {
                                                  "items": {
                                                    "type": "string"
                                                  },
                                                  "type": "array"
                                                },
                                                "international": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "5": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "shippingprofileid": {
                                              "type": "string"
                                            },
                                            "shiptolocations": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "siteid": {
                                              "type": "string"
                                            },
                                            "siteshipping": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "subtitle": {
                                              "type": "string"
                                            },
                                            "taxcategory": {
                                              "type": "string"
                                            },
                                            "template": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "ebay2paymentinstructions": {
                                          "type": "string"
                                        },
                                        "ebay2paymentmethods": {
                                          "type": "string"
                                        },
                                        "ebay2paymentprofileid": {
                                          "type": "string"
                                        },
                                        "ebay2paypalemailaddress": {
                                          "type": "string"
                                        },
                                        "ebay2prefiliteminfo": {
                                          "type": "string"
                                        },
                                        "ebay2price": {
                                          "type": "string"
                                        },
                                        "ebay2private": {
                                          "type": "string"
                                        },
                                        "ebay2promotionendtime": {
                                          "type": "string"
                                        },
                                        "ebay2promotionstarttime": {
                                          "type": "string"
                                        },
                                        "ebay2returnprofileid": {
                                          "type": "string"
                                        },
                                        "ebay2returnsdescription": {
                                          "type": "string"
                                        },
                                        "ebay2returnsrefund": {
                                          "type": "string"
                                        },
                                        "ebay2returnsrestockingfeevalue": {
                                          "type": "string"
                                        },
                                        "ebay2returnsreturnsaccepted": {
                                          "type": "string"
                                        },
                                        "ebay2returnsreturnswithin": {
                                          "type": "string"
                                        },
                                        "ebay2returnsshippingcostpaidby": {
                                          "type": "string"
                                        },
                                        "ebay2salestaxpercent": {
                                          "type": "number"
                                        },
                                        "ebay2scheduletime": {
                                          "type": "string"
                                        },
                                        "ebay2secondcategory": {
                                          "type": "string"
                                        },
                                        "ebay2shippingcalculatedhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay2shippingcalculatedinternationalhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay2shippingcalculatedpostalcode": {
                                          "type": "string"
                                        },
                                        "ebay2shippingcalculatedshippingirregular": {
                                          "type": "boolean"
                                        },
                                        "ebay2shippingcalculatedshippingpackage": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingexcludes": {
                                          "type": "string"
                                        },
                                        "ebay2shippingglobal": {
                                          "type": "string"
                                        },
                                        "ebay2shippingincludedintax": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational1cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational1location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational2cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational2location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational3cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational3location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational4cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational4location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational5cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational5cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational5location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingprofileid": {
                                          "type": "string"
                                        },
                                        "ebay2shippingratetabledom": {
                                          "type": "string"
                                        },
                                        "ebay2shippingratetableintl": {
                                          "type": "string"
                                        },
                                        "ebay2shippingtype": {
                                          "type": "string"
                                        },
                                        "ebay2shiptolocations": {
                                          "type": "string"
                                        },
                                        "ebay2siteid": {
                                          "type": "string"
                                        },
                                        "ebay2siteshipping": {
                                          "type": "string"
                                        },
                                        "ebay2skip": {
                                          "type": "string"
                                        },
                                        "ebay2sku": {
                                          "type": "string"
                                        },
                                        "ebay2starttime": {
                                          "type": "string"
                                        },
                                        "ebay2storeid": {
                                          "type": "string"
                                        },
                                        "ebay2storeid2": {
                                          "type": "string"
                                        },
                                        "ebay2subtitle": {
                                          "type": "string"
                                        },
                                        "ebay2taxcategory": {
                                          "type": "string"
                                        },
                                        "ebay2template": {
                                          "type": "string"
                                        },
                                        "ebay2title": {
                                          "type": "string"
                                        },
                                        "ebay2upcnot": {
                                          "type": "string"
                                        },
                                        "ebay3adult": {
                                          "type": "string"
                                        },
                                        "ebay3auctionsrelist": {
                                          "type": "string"
                                        },
                                        "ebay3autopay": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistaction": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistcount": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistduration": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistmax": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistprice": {
                                          "type": "string"
                                        },
                                        "ebay3bestofferautoacceptprice": {
                                          "type": "number"
                                        },
                                        "ebay3bestofferenabled": {
                                          "type": "string"
                                        },
                                        "ebay3bestofferminimumprice": {
                                          "type": "number"
                                        },
                                        "ebay3buyitnow": {
                                          "type": "number"
                                        },
                                        "ebay3catid": {
                                          "type": "string"
                                        },
                                        "ebay3country": {
                                          "type": "string"
                                        },
                                        "ebay3currency": {
                                          "type": "string"
                                        },
                                        "ebay3description": {
                                          "type": "string"
                                        },
                                        "ebay3dispatch": {
                                          "type": "string"
                                        },
                                        "ebay3duration": {
                                          "type": "string"
                                        },
                                        "ebay3endtime": {
                                          "type": "string"
                                        },
                                        "ebay3fitmentcatalog": {
                                          "type": "string"
                                        },
                                        "ebay3getitfast": {
                                          "type": "string"
                                        },
                                        "ebay3holidayreturn": {
                                          "type": "string"
                                        },
                                        "ebay3id": {
                                          "type": "string"
                                        },
                                        "ebay3internationalon": {
                                          "type": "string"
                                        },
                                        "ebay3listing": {
                                          "type": "string"
                                        },
                                        "ebay3location": {
                                          "type": "string"
                                        },
                                        "ebay3minimumadvertisedprice": {
                                          "type": "string"
                                        },
                                        "ebay3minimumadvertisedpriceexposure": {
                                          "type": "string"
                                        },
                                        "ebay3options": {
                                          "properties": {
                                            "autorelist": {
                                              "properties": {
                                                "action": {
                                                  "type": "string"
                                                },
                                                "count": {
                                                  "type": "string"
                                                },
                                                "duration": {
                                                  "type": "string"
                                                },
                                                "max": {
                                                  "type": "string"
                                                },
                                                "price": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "bestoffer": {
                                              "properties": {
                                                "autoacceptprice": {
                                                  "type": "number"
                                                },
                                                "minimumprice": {
                                                  "type": "number"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "buyitnow": {
                                              "type": "number"
                                            },
                                            "country": {
                                              "type": "string"
                                            },
                                            "dispatch": {
                                              "type": [
                                                "object",
                                                "null"
                                              ]
                                            },
                                            "duration": {
                                              "type": "string"
                                            },
                                            "fitmentcatalog": {
                                              "type": "string"
                                            },
                                            "internationalon": {
                                              "type": "string"
                                            },
                                            "listing": {
                                              "type": "string"
                                            },
                                            "location": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedprice": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedpriceexposure": {
                                              "type": "string"
                                            },
                                            "paymentinstructions": {
                                              "type": "string"
                                            },
                                            "paymentmethods": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "paymentprofileid": {
                                              "type": "string"
                                            },
                                            "returnprofileid": {
                                              "type": "string"
                                            },
                                            "returns": {
                                              "properties": {
                                                "description": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "salestaxpercent": {
                                              "type": "number"
                                            },
                                            "scheduletime": {
                                              "type": "string"
                                            },
                                            "secondcategory": {
                                              "type": "string"
                                            },
                                            "shipping": {
                                              "properties": {
                                                "calculated": {
                                                  "properties": {
                                                    "handlingfee": {
                                                      "type": "number"
                                                    },
                                                    "internationalhandlingfee": {
                                                      "type": "number"
                                                    },
                                                    "postalcode": {
                                                      "type": "string"
                                                    },
                                                    "shippingirregular": {
                                                      "type": "boolean"
                                                    },
                                                    "shippingpackage": {
                                                      "type": "string"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "domestic": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "excludes": {
                                                  "items": {
                                                    "type": "string"
                                                  },
                                                  "type": "array"
                                                },
                                                "international": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "5": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "shippingprofileid": {
                                              "type": "string"
                                            },
                                            "shiptolocations": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "siteid": {
                                              "type": "string"
                                            },
                                            "siteshipping": {
                                              "type": "string"
                                            },
                                            "subtitle": {
                                              "type": "string"
                                            },
                                            "taxcategory": {
                                              "type": "string"
                                            },
                                            "template": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "ebay3paymentinstructions": {
                                          "type": "string"
                                        },
                                        "ebay3paymentmethods": {
                                          "type": "string"
                                        },
                                        "ebay3paymentprofileid": {
                                          "type": "string"
                                        },
                                        "ebay3paypalemailaddress": {
                                          "type": "string"
                                        },
                                        "ebay3prefiliteminfo": {
                                          "type": "string"
                                        },
                                        "ebay3price": {
                                          "type": "string"
                                        },
                                        "ebay3private": {
                                          "type": "string"
                                        },
                                        "ebay3promotionendtime": {
                                          "type": "string"
                                        },
                                        "ebay3promotionstarttime": {
                                          "type": "string"
                                        },
                                        "ebay3returnprofileid": {
                                          "type": "string"
                                        },
                                        "ebay3returnsdescription": {
                                          "type": "string"
                                        },
                                        "ebay3returnsrefund": {
                                          "type": "string"
                                        },
                                        "ebay3returnsrestockingfeevalue": {
                                          "type": "string"
                                        },
                                        "ebay3returnsreturnsaccepted": {
                                          "type": "string"
                                        },
                                        "ebay3returnsreturnswithin": {
                                          "type": "string"
                                        },
                                        "ebay3returnsshippingcostpaidby": {
                                          "type": "string"
                                        },
                                        "ebay3salestaxpercent": {
                                          "type": "number"
                                        },
                                        "ebay3scheduletime": {
                                          "type": "string"
                                        },
                                        "ebay3secondcategory": {
                                          "type": "string"
                                        },
                                        "ebay3shippingcalculatedhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay3shippingcalculatedinternationalhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay3shippingcalculatedpostalcode": {
                                          "type": "string"
                                        },
                                        "ebay3shippingcalculatedshippingirregular": {
                                          "type": "boolean"
                                        },
                                        "ebay3shippingcalculatedshippingpackage": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingexcludes": {
                                          "type": "string"
                                        },
                                        "ebay3shippingglobal": {
                                          "type": "string"
                                        },
                                        "ebay3shippingincludedintax": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational1cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational1location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational2cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational2location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational3cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational3location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational4cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational4location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational5cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational5cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational5location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingprofileid": {
                                          "type": "string"
                                        },
                                        "ebay3shippingratetabledom": {
                                          "type": "string"
                                        },
                                        "ebay3shippingratetableintl": {
                                          "type": "string"
                                        },
                                        "ebay3shippingtype": {
                                          "type": "string"
                                        },
                                        "ebay3shiptolocations": {
                                          "type": "string"
                                        },
                                        "ebay3siteid": {
                                          "type": "string"
                                        },
                                        "ebay3siteshipping": {
                                          "type": "string"
                                        },
                                        "ebay3skip": {
                                          "type": "string"
                                        },
                                        "ebay3sku": {
                                          "type": "string"
                                        },
                                        "ebay3starttime": {
                                          "type": "string"
                                        },
                                        "ebay3storeid": {
                                          "type": "string"
                                        },
                                        "ebay3storeid2": {
                                          "type": "string"
                                        },
                                        "ebay3subtitle": {
                                          "type": "string"
                                        },
                                        "ebay3taxcategory": {
                                          "type": "string"
                                        },
                                        "ebay3template": {
                                          "type": "string"
                                        },
                                        "ebay3title": {
                                          "type": "string"
                                        },
                                        "ebay3upcnot": {
                                          "type": "string"
                                        },
                                        "ebayadult": {
                                          "type": "string"
                                        },
                                        "ebayauctionsrelist": {
                                          "type": "string"
                                        },
                                        "ebayautopay": {
                                          "type": "string"
                                        },
                                        "ebayautorelistaction": {
                                          "type": "string"
                                        },
                                        "ebayautorelistcount": {
                                          "type": "string"
                                        },
                                        "ebayautorelistduration": {
                                          "type": "string"
                                        },
                                        "ebayautorelistmax": {
                                          "type": "string"
                                        },
                                        "ebayautorelistprice": {
                                          "type": "string"
                                        },
                                        "ebaybestofferautoacceptprice": {
                                          "type": "number"
                                        },
                                        "ebaybestofferenabled": {
                                          "type": "string"
                                        },
                                        "ebaybestofferminimumprice": {
                                          "type": "number"
                                        },
                                        "ebaybuyitnow": {
                                          "type": "number"
                                        },
                                        "ebaycatid": {
                                          "type": "string"
                                        },
                                        "ebaycountry": {
                                          "type": "string"
                                        },
                                        "ebaycurrency": {
                                          "type": "string"
                                        },
                                        "ebaydescription": {
                                          "type": "string"
                                        },
                                        "ebaydispatch": {
                                          "type": "string"
                                        },
                                        "ebayduration": {
                                          "type": "string"
                                        },
                                        "ebayendtime": {
                                          "type": "string"
                                        },
                                        "ebayepid": {
                                          "type": "string"
                                        },
                                        "ebayfitmentcatalog": {
                                          "type": "string"
                                        },
                                        "ebaygetitfast": {
                                          "type": "string"
                                        },
                                        "ebayholidayreturn": {
                                          "type": "string"
                                        },
                                        "ebayid": {
                                          "type": "string"
                                        },
                                        "ebayinternationalon": {
                                          "type": "string"
                                        },
                                        "ebayitemspecificsmapprice": {
                                          "type": "string"
                                        },
                                        "ebayitemspecificswarranty": {
                                          "type": "string"
                                        },
                                        "ebayktype": {
                                          "type": "string"
                                        },
                                        "ebaylisting": {
                                          "type": "string"
                                        },
                                        "ebaylocation": {
                                          "type": "string"
                                        },
                                        "ebayminimumadvertisedprice": {
                                          "type": "string"
                                        },
                                        "ebayminimumadvertisedpriceexposure": {
                                          "type": "string"
                                        },
                                        "ebayoptions": {
                                          "properties": {
                                            "autorelist": {
                                              "properties": {
                                                "action": {
                                                  "type": "string"
                                                },
                                                "count": {
                                                  "type": "string"
                                                },
                                                "duration": {
                                                  "type": "string"
                                                },
                                                "max": {
                                                  "type": "string"
                                                },
                                                "price": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "bestoffer": {
                                              "properties": {
                                                "autoacceptprice": {
                                                  "type": "number"
                                                },
                                                "minimumprice": {
                                                  "type": "number"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "buyitnow": {
                                              "type": "number"
                                            },
                                            "country": {
                                              "type": "string"
                                            },
                                            "dispatch": {
                                              "type": [
                                                "object",
                                                "null"
                                              ]
                                            },
                                            "duration": {
                                              "type": "string"
                                            },
                                            "fitmentcatalog": {
                                              "type": "string"
                                            },
                                            "internationalon": {
                                              "type": "string"
                                            },
                                            "itemspecifics": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "listing": {
                                              "type": "string"
                                            },
                                            "location": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedprice": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedpriceexposure": {
                                              "type": "string"
                                            },
                                            "paymentinstructions": {
                                              "type": "string"
                                            },
                                            "paymentmethods": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "paymentprofileid": {
                                              "type": "string"
                                            },
                                            "returnprofileid": {
                                              "type": "string"
                                            },
                                            "returns": {
                                              "properties": {
                                                "description": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "salestaxpercent": {
                                              "type": "number"
                                            },
                                            "scheduletime": {
                                              "type": "string"
                                            },
                                            "secondcategory": {
                                              "type": "string"
                                            },
                                            "shipping": {
                                              "properties": {
                                                "calculated": {
                                                  "properties": {
                                                    "handlingfee": {
                                                      "type": "number"
                                                    },
                                                    "internationalhandlingfee": {
                                                      "type": "number"
                                                    },
                                                    "postalcode": {
                                                      "type": "string"
                                                    },
                                                    "shippingirregular": {
                                                      "type": "boolean"
                                                    },
                                                    "shippingpackage": {
                                                      "type": "string"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "domestic": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "excludes": {
                                                  "items": {
                                                    "type": "string"
                                                  },
                                                  "type": "array"
                                                },
                                                "international": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "5": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "shippingprofileid": {
                                              "type": "string"
                                            },
                                            "shiptolocations": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "siteid": {
                                              "type": "string"
                                            },
                                            "siteshipping": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "subtitle": {
                                              "type": "string"
                                            },
                                            "taxcategory": {
                                              "type": "string"
                                            },
                                            "template": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "ebaypaymentinstructions": {
                                          "type": "string"
                                        },
                                        "ebaypaymentmethods": {
                                          "type": "string"
                                        },
                                        "ebaypaymentprofileid": {
                                          "type": "string"
                                        },
                                        "ebaypaypalemailaddress": {
                                          "type": "string"
                                        },
                                        "ebayprefiliteminfo": {
                                          "type": "string"
                                        },
                                        "ebayprice": {
                                          "type": "string"
                                        },
                                        "ebayprivate": {
                                          "type": "string"
                                        },
                                        "ebayproductid": {
                                          "type": "string"
                                        },
                                        "ebaypromotionendtime": {
                                          "type": "string"
                                        },
                                        "ebaypromotionstarttime": {
                                          "type": "string"
                                        },
                                        "ebayreturnprofileid": {
                                          "type": "string"
                                        },
                                        "ebayreturnsdescription": {
                                          "type": "string"
                                        },
                                        "ebayreturnsrefund": {
                                          "type": "string"
                                        },
                                        "ebayreturnsrestockingfeevalue": {
                                          "type": "string"
                                        },
                                        "ebayreturnsreturnsaccepted": {
                                          "type": "string"
                                        },
                                        "ebayreturnsreturnswithin": {
                                          "type": "string"
                                        },
                                        "ebayreturnsshippingcostpaidby": {
                                          "type": "string"
                                        },
                                        "ebaysalestaxpercent": {
                                          "type": "number"
                                        },
                                        "ebayscheduletime": {
                                          "type": "string"
                                        },
                                        "ebaysecondcategory": {
                                          "type": "string"
                                        },
                                        "ebayshippingcalculatedhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebayshippingcalculatedinternationalhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebayshippingcalculatedpostalcode": {
                                          "type": "string"
                                        },
                                        "ebayshippingcalculatedshippingirregular": {
                                          "type": "boolean"
                                        },
                                        "ebayshippingcalculatedshippingpackage": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingexcludes": {
                                          "type": "string"
                                        },
                                        "ebayshippingglobal": {
                                          "type": "string"
                                        },
                                        "ebayshippingincludedintax": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational1cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational1location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational2cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational2location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational3cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational3location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational4cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational4location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational5cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational5cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational5location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5service": {
                                          "type": "string"
                                        },
                                        "ebayshippingprofileid": {
                                          "type": "string"
                                        },
                                        "ebayshippingratetabledom": {
                                          "type": "string"
                                        },
                                        "ebayshippingratetableintl": {
                                          "type": "string"
                                        },
                                        "ebayshippingtype": {
                                          "type": "string"
                                        },
                                        "ebayshiptolocations": {
                                          "type": "string"
                                        },
                                        "ebaysiteid": {
                                          "type": "string"
                                        },
                                        "ebaysiteshipping": {
                                          "type": "string"
                                        },
                                        "ebayskip": {
                                          "type": "string"
                                        },
                                        "ebaysku": {
                                          "type": "string"
                                        },
                                        "ebaystarttime": {
                                          "type": "string"
                                        },
                                        "ebaystoreid": {
                                          "type": "string"
                                        },
                                        "ebaystoreid2": {
                                          "type": "string"
                                        },
                                        "ebaysubtitle": {
                                          "type": "string"
                                        },
                                        "ebaytaxcategory": {
                                          "type": "string"
                                        },
                                        "ebaytemplate": {
                                          "type": "string"
                                        },
                                        "ebaytitle": {
                                          "type": "string"
                                        },
                                        "ebayupcnot": {
                                          "type": "string"
                                        },
                                        "etsycategoryid": {
                                          "type": "string"
                                        },
                                        "etsydescription": {
                                          "type": "string"
                                        },
                                        "etsyiscustomizable": {
                                          "type": "string"
                                        },
                                        "etsyissupply": {
                                          "type": "string"
                                        },
                                        "etsylistingid": {
                                          "type": "string"
                                        },
                                        "etsymaterials": {
                                          "type": "string"
                                        },
                                        "etsynontaxable": {
                                          "type": "string"
                                        },
                                        "etsyoccasion": {
                                          "type": "string"
                                        },
                                        "etsyoptions": {
                                          "properties": {
                                            "category_id": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "is_customizable": {
                                              "type": "string"
                                            },
                                            "is_supply": {
                                              "type": "string"
                                            },
                                            "materials": {
                                              "type": "string"
                                            },
                                            "non_taxable": {
                                              "type": "string"
                                            },
                                            "occasion": {
                                              "type": "string"
                                            },
                                            "opts_listing_id": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "recipient": {
                                              "type": "string"
                                            },
                                            "shipping_template_id": {
                                              "type": "string"
                                            },
                                            "shop_section_id": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "state": {
                                              "type": "string"
                                            },
                                            "title": {
                                              "type": "string"
                                            },
                                            "variant_keys": {
                                              "type": "string"
                                            },
                                            "when_made": {
                                              "type": "string"
                                            },
                                            "who_made": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "etsyoptslistingid": {
                                          "type": "string"
                                        },
                                        "etsyprice": {
                                          "type": "string"
                                        },
                                        "etsyrecipient": {
                                          "type": "string"
                                        },
                                        "etsyshippingtemplateid": {
                                          "type": "string"
                                        },
                                        "etsyshopsectionid": {
                                          "type": "string"
                                        },
                                        "etsyskip": {
                                          "type": "string"
                                        },
                                        "etsystate": {
                                          "type": "string"
                                        },
                                        "etsytitle": {
                                          "type": "string"
                                        },
                                        "etsyvariantkeys": {
                                          "type": "string"
                                        },
                                        "etsywhenmade": {
                                          "type": "string"
                                        },
                                        "etsywhomade": {
                                          "type": "string"
                                        },
                                        "exportlabel": {
                                          "type": "string"
                                        },
                                        "featured": {
                                          "type": "string"
                                        },
                                        "flavor": {
                                          "type": "string"
                                        },
                                        "floormatlogo": {
                                          "type": "string"
                                        },
                                        "fulfillmentlatency": {
                                          "type": "string"
                                        },
                                        "galleryuri": {
                                          "type": "string"
                                        },
                                        "geolocation": {
                                          "type": "string"
                                        },
                                        "googlecategory": {
                                          "type": "string"
                                        },
                                        "googleshopping": {
                                          "type": "string"
                                        },
                                        "googleshopurl": {
                                          "type": "string"
                                        },
                                        "guid": {
                                          "type": "string"
                                        },
                                        "guidad": {
                                          "type": "string"
                                        },
                                        "handlingfee": {
                                          "type": "string"
                                        },
                                        "hosierysize": {
                                          "type": "string"
                                        },
                                        "htmltitle": {
                                          "type": "string"
                                        },
                                        "id": {
                                          "type": "string"
                                        },
                                        "importfield": {
                                          "type": "string"
                                        },
                                        "inseam": {
                                          "type": "string"
                                        },
                                        "internationalshipping1": {
                                          "type": "string"
                                        },
                                        "intimatessleepsizewomens": {
                                          "type": "string"
                                        },
                                        "isbn": {
                                          "type": "string"
                                        },
                                        "iskit": {
                                          "type": "string"
                                        },
                                        "iskit_calculated_cost": {
                                          "type": "boolean"
                                        },
                                        "iskit_calculated_price": {
                                          "type": "boolean"
                                        },
                                        "jacketlength": {
                                          "type": "string"
                                        },
                                        "jacketsize": {
                                          "type": "string"
                                        },
                                        "keywords": {
                                          "type": "string"
                                        },
                                        "longdescription": {
                                          "type": "string"
                                        },
                                        "magento2attributeset": {
                                          "type": "string"
                                        },
                                        "magento2categories": {
                                          "type": "string"
                                        },
                                        "magento2description": {
                                          "type": "string"
                                        },
                                        "magento2listingid": {
                                          "type": "string"
                                        },
                                        "magento2metadescription": {
                                          "type": "string"
                                        },
                                        "magento2metakeyword": {
                                          "type": "string"
                                        },
                                        "magento2metatitle": {
                                          "type": "string"
                                        },
                                        "magento2name": {
                                          "type": "string"
                                        },
                                        "magento2oldlistingid": {
                                          "type": "string"
                                        },
                                        "magento2oldsku": {
                                          "type": "string"
                                        },
                                        "magento2options": {
                                          "properties": {
                                            "attribute_set": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "tax_class_id": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "magento2parentsku": {
                                          "type": "string"
                                        },
                                        "magento2price": {
                                          "type": "string"
                                        },
                                        "magento2shortdescription": {
                                          "type": "string"
                                        },
                                        "magento2skip": {
                                          "type": "string"
                                        },
                                        "magento2sku": {
                                          "type": "string"
                                        },
                                        "magento2storepath": {
                                          "type": "string"
                                        },
                                        "magento2taxclassid": {
                                          "type": "string"
                                        },
                                        "magento2urlkey": {
                                          "type": "string"
                                        },
                                        "magento2urlpath": {
                                          "type": "string"
                                        },
                                        "magentoattributeset": {
                                          "type": "string"
                                        },
                                        "magentocategories": {
                                          "type": "string"
                                        },
                                        "magentodescription": {
                                          "type": "string"
                                        },
                                        "magentolistingid": {
                                          "type": "string"
                                        },
                                        "magentometadescription": {
                                          "type": "string"
                                        },
                                        "magentometakeyword": {
                                          "type": "string"
                                        },
                                        "magentometatitle": {
                                          "type": "string"
                                        },
                                        "magentoname": {
                                          "type": "string"
                                        },
                                        "magentooldlistingid": {
                                          "type": "string"
                                        },
                                        "magentooldsku": {
                                          "type": "string"
                                        },
                                        "magentooptions": {
                                          "properties": {
                                            "attribute_set": {
                                              "type": "string"
                                            },
                                            "categories": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "meta_description": {
                                              "type": "string"
                                            },
                                            "meta_keyword": {
                                              "type": "string"
                                            },
                                            "meta_title": {
                                              "type": "string"
                                            },
                                            "name": {
                                              "type": "string"
                                            },
                                            "old_listing_id": {
                                              "type": "string"
                                            },
                                            "old_sku": {
                                              "type": "string"
                                            },
                                            "parent_sku": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "short_description": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "store_path": {
                                              "type": "string"
                                            },
                                            "tax_class_id": {
                                              "type": "string"
                                            },
                                            "url_key": {
                                              "type": "string"
                                            },
                                            "url_path": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "magentoparentsku": {
                                          "type": "string"
                                        },
                                        "magentoprice": {
                                          "type": "string"
                                        },
                                        "magentoshortdescription": {
                                          "type": "string"
                                        },
                                        "magentoskip": {
                                          "type": "string"
                                        },
                                        "magentosku": {
                                          "type": "string"
                                        },
                                        "magentostorepath": {
                                          "type": "string"
                                        },
                                        "magentotaxclassid": {
                                          "type": "string"
                                        },
                                        "magentourlkey": {
                                          "type": "string"
                                        },
                                        "magentourlpath": {
                                          "type": "string"
                                        },
                                        "manufacturer": {
                                          "type": "string"
                                        },
                                        "manufacturerpartnumber": {
                                          "type": "string"
                                        },
                                        "mapprice": {
                                          "type": "string"
                                        },
                                        "material": {
                                          "type": "string"
                                        },
                                        "maxstock": {
                                          "type": "string"
                                        },
                                        "media1": {
                                          "type": "string"
                                        },
                                        "media10": {
                                          "type": "string"
                                        },
                                        "media10alttext": {
                                          "type": "string"
                                        },
                                        "media11alttext": {
                                          "type": "string"
                                        },
                                        "media1alttext": {
                                          "type": "string"
                                        },
                                        "media2": {
                                          "type": "string"
                                        },
                                        "media2alttext": {
                                          "type": "string"
                                        },
                                        "media3": {
                                          "type": "string"
                                        },
                                        "media3alttext": {
                                          "type": "string"
                                        },
                                        "media4": {
                                          "type": "string"
                                        },
                                        "media4alttext": {
                                          "type": "string"
                                        },
                                        "media5": {
                                          "type": "string"
                                        },
                                        "media5alttext": {
                                          "type": "string"
                                        },
                                        "media6": {
                                          "type": "string"
                                        },
                                        "media6alttext": {
                                          "type": "string"
                                        },
                                        "media7": {
                                          "type": "string"
                                        },
                                        "media7alttext": {
                                          "type": "string"
                                        },
                                        "media8": {
                                          "type": "string"
                                        },
                                        "media8alttext": {
                                          "type": "string"
                                        },
                                        "media9": {
                                          "type": "string"
                                        },
                                        "media9alttext": {
                                          "type": "string"
                                        },
                                        "mediacount": {
                                          "type": "string"
                                        },
                                        "mediax": {
                                          "type": "string"
                                        },
                                        "metadescription": {
                                          "type": "string"
                                        },
                                        "metal": {
                                          "type": "string"
                                        },
                                        "meyersku": {
                                          "type": "string"
                                        },
                                        "meyerstock": {
                                          "type": "string"
                                        },
                                        "minstock": {
                                          "type": "string"
                                        },
                                        "model": {
                                          "type": "string"
                                        },
                                        "modelnumber": {
                                          "type": "string"
                                        },
                                        "mpn": {
                                          "type": "string"
                                        },
                                        "msrp": {
                                          "type": "string"
                                        },
                                        "name": {
                                          "type": "string"
                                        },
                                        "nameofnewfield": {
                                          "type": "string"
                                        },
                                        "newbccffield1": {
                                          "type": "string"
                                        },
                                        "notes": {
                                          "type": "string"
                                        },
                                        "numberofitems": {
                                          "type": "string"
                                        },
                                        "packagequantity": {
                                          "type": "string"
                                        },
                                        "parenturi": {
                                          "type": "string"
                                        },
                                        "pl20160304001": {
                                          "type": "string"
                                        },
                                        "pl20160304003": {
                                          "type": "string"
                                        },
                                        "preexistingcustomarc005": {
                                          "type": "string"
                                        },
                                        "price": {
                                          "type": "string"
                                        },
                                        "productshippingtemplate": {
                                          "type": "string"
                                        },
                                        "producttaxcode": {
                                          "type": "string"
                                        },
                                        "producttype": {
                                          "type": "string"
                                        },
                                        "registeredparameter": {
                                          "type": "string"
                                        },
                                        "releasedate": {
                                          "type": "string"
                                        },
                                        "ringsize": {
                                          "type": "string"
                                        },
                                        "rule": {
                                          "type": "string"
                                        },
                                        "shelfdescription": {
                                          "type": "string"
                                        },
                                        "shipping": {
                                          "type": "string"
                                        },
                                        "shippingadditional": {
                                          "type": "string"
                                        },
                                        "size": {
                                          "type": "string"
                                        },
                                        "sizemens": {
                                          "type": "string"
                                        },
                                        "sizetype": {
                                          "type": "string"
                                        },
                                        "sizewomens": {
                                          "type": "string"
                                        },
                                        "sku": {
                                          "type": "string"
                                        },
                                        "skuvaultbrand": {
                                          "type": "string"
                                        },
                                        "skuvaultclassification": {
                                          "type": "string"
                                        },
                                        "skuvaultcode": {
                                          "type": "string"
                                        },
                                        "skuvaultcost": {
                                          "type": "string"
                                        },
                                        "skuvaultdescription": {
                                          "type": "string"
                                        },
                                        "skuvaultiskit": {
                                          "type": "string"
                                        },
                                        "skuvaultislisted": {
                                          "type": "string"
                                        },
                                        "skuvaultlocationinfo": {
                                          "type": "string"
                                        },
                                        "skuvaultoptions": {
                                          "properties": {
                                            "Brand": {
                                              "type": "string"
                                            },
                                            "Classification": {
                                              "type": "string"
                                            },
                                            "Code": {
                                              "type": "string"
                                            },
                                            "Cost": {
                                              "type": "string"
                                            },
                                            "Description": {
                                              "type": "string"
                                            },
                                            "PartNumber": {
                                              "type": "string"
                                            },
                                            "QuantityAvailable": {
                                              "type": "string"
                                            },
                                            "RetailPrice": {
                                              "type": "string"
                                            },
                                            "SalePrice": {
                                              "type": "string"
                                            },
                                            "Supplier": {
                                              "type": "string"
                                            },
                                            "isListed": {
                                              "type": "string"
                                            },
                                            "iskit": {
                                              "type": "string"
                                            },
                                            "locationInfo": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "skuvaultpartnumber": {
                                          "type": "string"
                                        },
                                        "skuvaultquantityavailable": {
                                          "type": "string"
                                        },
                                        "skuvaultretailprice": {
                                          "type": "string"
                                        },
                                        "skuvaultsaleprice": {
                                          "type": "string"
                                        },
                                        "skuvaultskip": {
                                          "type": "string"
                                        },
                                        "skuvaultsku": {
                                          "type": "string"
                                        },
                                        "skuvaultsupplier": {
                                          "type": "string"
                                        },
                                        "sleevelength": {
                                          "type": "string"
                                        },
                                        "socksize": {
                                          "type": "string"
                                        },
                                        "state": {
                                          "type": "string"
                                        },
                                        "status": {
                                          "type": "string"
                                        },
                                        "stock": {
                                          "type": "string"
                                        },
                                        "style": {
                                          "type": "string"
                                        },
                                        "test": {
                                          "type": "string"
                                        },
                                        "test2": {
                                          "type": "string"
                                        },
                                        "testfield3": {
                                          "type": "string"
                                        },
                                        "testx1": {
                                          "type": "string"
                                        },
                                        "threadcolor": {
                                          "type": "string"
                                        },
                                        "title": {
                                          "type": "string"
                                        },
                                        "total_stock": {
                                          "type": "string"
                                        },
                                        "totalsold": {
                                          "type": "string"
                                        },
                                        "transamericansku": {
                                          "type": "string"
                                        },
                                        "transamericanstock": {
                                          "type": "string"
                                        },
                                        "tx1": {
                                          "type": "string"
                                        },
                                        "tx10": {
                                          "type": "string"
                                        },
                                        "tx11": {
                                          "type": "string"
                                        },
                                        "tx12": {
                                          "type": "string"
                                        },
                                        "tx13": {
                                          "type": "string"
                                        },
                                        "tx3": {
                                          "type": "string"
                                        },
                                        "type": {
                                          "type": "string"
                                        },
                                        "upc": {
                                          "type": "string"
                                        },
                                        "updatenotes": {
                                          "type": "string"
                                        },
                                        "updatereason": {
                                          "type": "string"
                                        },
                                        "uri": {
                                          "type": "string"
                                        },
                                        "usertype": {
                                          "type": "string"
                                        },
                                        "userupc": {
                                          "type": "string"
                                        },
                                        "usshoesizemens": {
                                          "type": "string"
                                        },
                                        "usshoesizewomens": {
                                          "type": "string"
                                        },
                                        "variationtheme": {
                                          "type": "string"
                                        },
                                        "vendorstock": {
                                          "type": "string"
                                        },
                                        "waistsize": {
                                          "type": "string"
                                        },
                                        "walmartcategory": {
                                          "type": "string"
                                        },
                                        "walmartdescription": {
                                          "type": "string"
                                        },
                                        "walmartenqueued": {
                                          "type": "string"
                                        },
                                        "walmartinprogress": {
                                          "type": "string"
                                        },
                                        "walmartislisted": {
                                          "type": "string"
                                        },
                                        "walmartmedia": {
                                          "type": "string"
                                        },
                                        "walmartname": {
                                          "type": "string"
                                        },
                                        "walmartoptions": {
                                          "properties": {
                                            "category": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "enqueued": {
                                              "type": "string"
                                            },
                                            "media": {
                                              "type": "string"
                                            },
                                            "name": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "url": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "walmartprice": {
                                          "type": "string"
                                        },
                                        "walmartskip": {
                                          "type": "string"
                                        },
                                        "walmartsku": {
                                          "type": "string"
                                        },
                                        "walmartstatus": {
                                          "type": "string"
                                        },
                                        "walmarturl": {
                                          "type": "string"
                                        },
                                        "warranty": {
                                          "type": "string"
                                        },
                                        "weight": {
                                          "type": "string"
                                        },
                                        "wmcategory": {
                                          "type": "string"
                                        },
                                        "wmtaxcode": {
                                          "type": "string"
                                        },
                                        "working": {
                                          "type": "string"
                                        }
                                      },
                                      "type": "object"
                                    }
                                  },
                                  "type": "object"
                                },
                                "itemid": {
                                  "type": "string"
                                },
                                "media": {
                                  "type": "string"
                                },
                                "price": {
                                  "type": "string"
                                },
                                "quantity": {
                                  "type": "string"
                                },
                                "sku": {
                                  "type": "string"
                                },
                                "source": {
                                  "type": "string"
                                },
                                "title": {
                                  "type": "string"
                                },
                                "weight": {
                                  "type": "string"
                                }
                              },
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "itemtotal": {
                            "type": "string"
                          },
                          "meta": {
                            "items": {
                              "type": "string"
                            },
                            "type": "array"
                          },
                          "oid": {
                            "type": "string"
                          },
                          "oidconsolidate": {
                            "type": "string"
                          },
                          "order": {
                            "type": "string"
                          },
                          "ordernumber": {
                            "type": "string"
                          },
                          "payment": {
                            "type": "string"
                          },
                          "paymentdate": {
                            "type": "string"
                          },
                          "paymentstatus": {
                            "type": "string"
                          },
                          "refunds": {
                            "items": {
                              "type": "string"
                            },
                            "type": "array"
                          },
                          "shipments": {
                            "items": {
                              "properties": {
                                "shipcarrier": {
                                  "type": "string"
                                },
                                "shipcost": {
                                  "type": "string"
                                },
                                "shipdate": {
                                  "type": "string"
                                },
                                "shipdetails": {
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": "array"
                                },
                                "shipid": {
                                  "type": "string"
                                },
                                "shipservice": {
                                  "type": "string"
                                },
                                "shiptracking": {
                                  "type": "string"
                                },
                                "shipuser": {
                                  "type": "string"
                                }
                              },
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "shipping": {
                            "properties": {
                              "city": {
                                "type": "string"
                              },
                              "company": {
                                "type": "string"
                              },
                              "country": {
                                "type": "string"
                              },
                              "firstname": {
                                "type": "string"
                              },
                              "lastname": {
                                "type": "string"
                              },
                              "middlename": {
                                "type": "string"
                              },
                              "phone": {
                                "type": "string"
                              },
                              "phone2": {
                                "type": "string"
                              },
                              "postalcode": {
                                "type": "string"
                              },
                              "stateprovince": {
                                "type": "string"
                              },
                              "street1": {
                                "type": "string"
                              },
                              "street2": {
                                "type": "string"
                              },
                              "street3": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "shippingcarrier": {
                            "type": "string"
                          },
                          "shippingservice": {
                            "type": "string"
                          },
                          "shippingstatus": {
                            "type": "string"
                          },
                          "shippingtotal": {
                            "type": "string"
                          },
                          "status": {
                            "type": "string"
                          },
                          "taxtotal": {
                            "type": "string"
                          },
                          "total": {
                            "type": "string"
                          },
                          "transactionid": {
                            "type": "string"
                          }
                        },
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "count": "1",
                      "orders": [
                        {
                          "account": null,
                          "archived": "0",
                          "billing": {
                            "city": "New York",
                            "company": "",
                            "country": "US",
                            "firstname": "Test",
                            "lastname": "User",
                            "middlename": "",
                            "phone": "877-773-6755",
                            "phone2": "",
                            "postalcode": "10010",
                            "stateprovince": "NY",
                            "street1": "115 E 23rd St",
                            "street2": "FL 3",
                            "street3": ""
                          },
                          "channel": "custom",
                          "comments": "Please ship all packages in one box.",
                          "correlationid": "",
                          "currency": "USD",
                          "date": "2018-06-27 13:38:25",
                          "dateupdated": "2018-06-27 13:38:25",
                          "dateupdatedutc": "2018-06-27 13:38:25",
                          "dateutc": "2018-06-27 13:38:25",
                          "details": {
                            "currency": [
                              "USD"
                            ],
                            "deliver-by-earliest": [
                              "2018-07-03 07:00:00"
                            ],
                            "deliver-by-latest": [
                              "2018-07-07 06:59:59"
                            ],
                            "handling": [
                              0
                            ],
                            "itemfee": [
                              "1.58"
                            ],
                            "ship-by-earliest": [
                              "2018-06-28 07:00:00"
                            ],
                            "ship-by-latest": [
                              "2018-06-29 06:59:59"
                            ],
                            "shipping": [
                              0
                            ],
                            "shipservice": [
                              "Standard"
                            ],
                            "shiptax": [
                              0
                            ],
                            "tax": [
                              0
                            ]
                          },
                          "discountcode": "",
                          "discounttotal": "0.00",
                          "email": "demo@suredone.com",
                          "gift": "0",
                          "handlingtotal": "0.00",
                          "instance": "0",
                          "internalnotes": {
                            "2018-08-11T16:22:49": "This is a great customer"
                          },
                          "ip": "",
                          "items": [
                            {
                              "boxheight": "0.50",
                              "boxlength": "1.00",
                              "boxwidth": "2.50",
                              "dimweight": "1.56",
                              "itemdetails": {
                                "order-item-id": "30090115962746",
                                "product": {
                                  "tags": "",
                                  "active": "0",
                                  "actualcost": "219.99",
                                  "amzn2asin": "",
                                  "amzn2category": "0",
                                  "amzn2categorypath": "",
                                  "amzn2currency": "",
                                  "amzn2fba": "",
                                  "amzn2itemtype": "0",
                                  "amzn2options": null,
                                  "amzn2parentbrand": "",
                                  "amzn2parentbullets": "",
                                  "amzn2parentdescription": "",
                                  "amzn2parentimage": "",
                                  "amzn2parenttitle": "",
                                  "amzn2price": "0.00",
                                  "amzn2search": "",
                                  "amzn2skip": "",
                                  "amzn2sku": "",
                                  "amzn2status": "",
                                  "amzn2title": "",
                                  "amzn3asin": "",
                                  "amzn3category": "0",
                                  "amzn3categorypath": "",
                                  "amzn3currency": "",
                                  "amzn3fba": "",
                                  "amzn3itemtype": "0",
                                  "amzn3options": null,
                                  "amzn3parentbrand": "",
                                  "amzn3parentbullets": "",
                                  "amzn3parentdescription": "",
                                  "amzn3parentimage": "",
                                  "amzn3parenttitle": "",
                                  "amzn3price": "0.00",
                                  "amzn3search": "",
                                  "amzn3skip": "",
                                  "amzn3sku": "",
                                  "amzn3status": "",
                                  "amzn3title": "",
                                  "amznasin": "",
                                  "amzncategory": "0",
                                  "amzncategorypath": "",
                                  "amzncurrency": "",
                                  "amznfba": "{\"status\":\"switch_off\",\"fulfillment_center\":\"\"}",
                                  "amznitemtype": "0",
                                  "amznoptions": {
                                    "categorypath": "",
                                    "parentbrand": "",
                                    "parentbullets": "",
                                    "parentdescription": "",
                                    "parentimage": "",
                                    "parenttitle": "",
                                    "skip": "alwaysSend"
                                  },
                                  "amznparentbrand": "",
                                  "amznparentbullets": "",
                                  "amznparentdescription": "",
                                  "amznparentimage": "",
                                  "amznparenttitle": "",
                                  "amznprice": "0.00",
                                  "amznsearch": "",
                                  "amznskip": "alwaysSend",
                                  "amznsku": "",
                                  "amznstatus": "",
                                  "amzntitle": "",
                                  "asset": "",
                                  "atest3": "",
                                  "bandsize": "",
                                  "bccf1": "",
                                  "bccustom1": "",
                                  "bccustom10": "",
                                  "bccustom11": "",
                                  "bccustom12": "",
                                  "bccustom13": "",
                                  "bccustom14": "",
                                  "bccustom15": "",
                                  "bccustom16": "",
                                  "bccustom17": "",
                                  "bccustom2": "",
                                  "bccustom3": "",
                                  "bccustom4": "",
                                  "bccustom5": "",
                                  "bccustom6": "",
                                  "bccustom7": "",
                                  "bccustom8": "",
                                  "bccustom9": "",
                                  "bcf1": "",
                                  "bcnewcf1": "",
                                  "bcnewcf2": "",
                                  "bcnewcf3": "",
                                  "bcnewcf4": "",
                                  "bcnewcf5": "",
                                  "bcnewcf6": "",
                                  "bcnewcf7": "",
                                  "bcnewcfa": "",
                                  "bcnewcfb": "",
                                  "bcnewcfc": "",
                                  "bcnewcfd": "",
                                  "bcnewcfe": "",
                                  "bcnewcff": "",
                                  "bcnewcfg": "",
                                  "bcnewcfh": "",
                                  "bcnewcfi": "",
                                  "bctest1": "",
                                  "bctest2": "",
                                  "bctest3": "",
                                  "bctest4": "",
                                  "bigcommerce2availability": "",
                                  "bigcommerce2availabilitydescription": "",
                                  "bigcommerce2avalaraproducttaxcode": "",
                                  "bigcommerce2binpickingnumber": "",
                                  "bigcommerce2brandid": "",
                                  "bigcommerce2calculatedprice": "",
                                  "bigcommerce2categories": "",
                                  "bigcommerce2configurablefields": "",
                                  "bigcommerce2costprice": "",
                                  "bigcommerce2customfields": "",
                                  "bigcommerce2datecreated": "",
                                  "bigcommerce2datelastimported": "",
                                  "bigcommerce2description": "",
                                  "bigcommerce2discountrules": "",
                                  "bigcommerce2downloads": "",
                                  "bigcommerce2eventdateend": "",
                                  "bigcommerce2eventdatefieldname": "",
                                  "bigcommerce2eventdatestart": "",
                                  "bigcommerce2eventdatetype": "",
                                  "bigcommerce2fixedcostshippingprice": "",
                                  "bigcommerce2images": "",
                                  "bigcommerce2inventorywarninglevel": "",
                                  "bigcommerce2isconditionshown": "",
                                  "bigcommerce2isfeatured": "",
                                  "bigcommerce2isfreeshipping": "",
                                  "bigcommerce2isopengraphthumbnail": "",
                                  "bigcommerce2ispreorderonly": "",
                                  "bigcommerce2ispricehidden": "",
                                  "bigcommerce2keywordfilter": "",
                                  "bigcommerce2layoutfile": "",
                                  "bigcommerce2listingid": "",
                                  "bigcommerce2manageproductrules": "",
                                  "bigcommerce2media": "",
                                  "bigcommerce2metadescription": "",
                                  "bigcommerce2metakeywords": "",
                                  "bigcommerce2myobassetaccount": "",
                                  "bigcommerce2myobexpenseaccount": "",
                                  "bigcommerce2myobincomeaccount": "",
                                  "bigcommerce2name": "",
                                  "bigcommerce2opengraphdescription": "",
                                  "bigcommerce2opengraphtitle": "",
                                  "bigcommerce2opengraphtype": "",
                                  "bigcommerce2options": null,
                                  "bigcommerce2optionsetdisplay": "",
                                  "bigcommerce2optionsetid": "",
                                  "bigcommerce2orderquantitymaximum": "",
                                  "bigcommerce2orderquantityminimum": "",
                                  "bigcommerce2pagetitle": "",
                                  "bigcommerce2path": "",
                                  "bigcommerce2peachtreeglaccount": "",
                                  "bigcommerce2preordermessage": "",
                                  "bigcommerce2preorderreleasedate": "",
                                  "bigcommerce2price": "",
                                  "bigcommerce2pricehiddenlabel": "",
                                  "bigcommerce2productrule": "",
                                  "bigcommerce2ratingcount": "",
                                  "bigcommerce2ratingtotal": "",
                                  "bigcommerce2relatedproducts": "",
                                  "bigcommerce2retailprice": "",
                                  "bigcommerce2saleprice": "",
                                  "bigcommerce2searchkeywords": "",
                                  "bigcommerce2skip": "",
                                  "bigcommerce2sku": "",
                                  "bigcommerce2skuid": "",
                                  "bigcommerce2taxclassid": "",
                                  "bigcommerce2totalsold": "",
                                  "bigcommerce2type": "",
                                  "bigcommerce2url": "",
                                  "bigcommerce2videos": "",
                                  "bigcommerce2viewcount": "",
                                  "bigcommerce2warranty": "",
                                  "bigcommerceavailability": "",
                                  "bigcommerceavailabilitydescription": "",
                                  "bigcommerceavalaraproducttaxcode": "",
                                  "bigcommercebinpickingnumber": "",
                                  "bigcommercebrandid": "",
                                  "bigcommercecalculatedprice": "",
                                  "bigcommercecategories": "",
                                  "bigcommerceconfigurablefields": "",
                                  "bigcommercecostprice": "",
                                  "bigcommercecustomfields": "[]",
                                  "bigcommercedatecreated": "",
                                  "bigcommercedatelastimported": "",
                                  "bigcommercedescription": "",
                                  "bigcommercediscountrules": "",
                                  "bigcommercedownloads": "",
                                  "bigcommerceeventdateend": "",
                                  "bigcommerceeventdatefieldname": "",
                                  "bigcommerceeventdatestart": "",
                                  "bigcommerceeventdatetype": "",
                                  "bigcommercefixedcostshippingprice": "",
                                  "bigcommerceimages": "",
                                  "bigcommerceinventorywarninglevel": "",
                                  "bigcommerceisconditionshown": "",
                                  "bigcommerceisfeatured": "",
                                  "bigcommerceisfreeshipping": "",
                                  "bigcommerceisopengraphthumbnail": "",
                                  "bigcommerceispreorderonly": "",
                                  "bigcommerceispricehidden": "",
                                  "bigcommercekeywordfilter": "",
                                  "bigcommercelayoutfile": "",
                                  "bigcommercelistingid": "",
                                  "bigcommercemanageproductrules": "",
                                  "bigcommercemedia": "",
                                  "bigcommercemetadescription": "",
                                  "bigcommercemetakeywords": "",
                                  "bigcommercemyobassetaccount": "",
                                  "bigcommercemyobexpenseaccount": "",
                                  "bigcommercemyobincomeaccount": "",
                                  "bigcommercename": "",
                                  "bigcommerceopengraphdescription": "",
                                  "bigcommerceopengraphtitle": "",
                                  "bigcommerceopengraphtype": "",
                                  "bigcommerceoptions": {
                                    "availability": "",
                                    "availability_description": "",
                                    "avalara_product_tax_code": "",
                                    "bin_picking_number": "",
                                    "brand_id": "",
                                    "calculated_price": "",
                                    "categories": "",
                                    "configurable_fields": "",
                                    "cost_price": "",
                                    "custom_fields": [],
                                    "date_created": "",
                                    "date_last_imported": "",
                                    "description": "",
                                    "discount_rules": "",
                                    "downloads": "",
                                    "event_date_end": "",
                                    "event_date_field_name": "",
                                    "event_date_start": "",
                                    "event_date_type": "",
                                    "fixed_cost_shipping_price": "",
                                    "images": "",
                                    "inventory_warning_level": "",
                                    "is_condition_shown": "",
                                    "is_featured": "",
                                    "is_free_shipping": "",
                                    "is_open_graph_thumbnail": "",
                                    "is_preorder_only": "",
                                    "is_price_hidden": "",
                                    "keyword_filter": "",
                                    "layout_file": "",
                                    "manage_product_rules": "",
                                    "media": "",
                                    "meta_description": "",
                                    "meta_keywords": "",
                                    "myob_asset_account": "",
                                    "myob_expense_account": "",
                                    "myob_income_account": "",
                                    "name": "",
                                    "open_graph_description": "",
                                    "open_graph_title": "",
                                    "open_graph_type": "",
                                    "option_set_display": "",
                                    "option_set_id": "",
                                    "order_quantity_maximum": "",
                                    "order_quantity_minimum": "",
                                    "page_title": "",
                                    "path": "https://store-988ysg.mybigcommerce.com",
                                    "peachtree_gl_account": "",
                                    "preorder_message": "",
                                    "preorder_release_date": "",
                                    "price": "",
                                    "price_hidden_label": "",
                                    "product_rule": "",
                                    "rating_count": "",
                                    "rating_total": "",
                                    "related_products": "",
                                    "retail_price": "",
                                    "sale_price": "",
                                    "search_keywords": "",
                                    "skip": "",
                                    "sku_id": "",
                                    "tax_class_id": "",
                                    "total_sold": "",
                                    "type": "",
                                    "url": "/products/",
                                    "videos": "",
                                    "view_count": "",
                                    "warranty": ""
                                  },
                                  "bigcommerceoptionsetdisplay": "",
                                  "bigcommerceoptionsetid": "",
                                  "bigcommerceorderquantitymaximum": "",
                                  "bigcommerceorderquantityminimum": "",
                                  "bigcommercepagetitle": "",
                                  "bigcommercepath": "https://store-988ysg.mybigcommerce.com",
                                  "bigcommercepeachtreeglaccount": "",
                                  "bigcommercepreordermessage": "",
                                  "bigcommercepreorderreleasedate": "",
                                  "bigcommerceprice": "",
                                  "bigcommercepricehiddenlabel": "",
                                  "bigcommerceproductrule": "",
                                  "bigcommerceratingcount": "",
                                  "bigcommerceratingtotal": "",
                                  "bigcommercerelatedproducts": "",
                                  "bigcommerceretailprice": "",
                                  "bigcommercesaleprice": "",
                                  "bigcommercesearchkeywords": "",
                                  "bigcommerceskip": "",
                                  "bigcommercesku": "U8800",
                                  "bigcommerceskuid": "",
                                  "bigcommercetaxclassid": "",
                                  "bigcommercetotalsold": "",
                                  "bigcommercetype": "",
                                  "bigcommerceurl": "/products/",
                                  "bigcommercevideos": "",
                                  "bigcommerceviewcount": "",
                                  "bigcommercewarranty": "",
                                  "boing": "",
                                  "bottomssizemens": "",
                                  "bottomssizewomens": "",
                                  "boxheight": "0.50",
                                  "boxlength": "1.00",
                                  "boxweight": "0.75",
                                  "boxwidth": "2.50",
                                  "brand": "AT&T",
                                  "bulletpoint1": "",
                                  "bulletpoint2": "",
                                  "bulletpoint3": "",
                                  "bulletpoint4": "",
                                  "bulletpoint5": "",
                                  "cache": "",
                                  "category1": "mobile phones",
                                  "category2": "android",
                                  "category3": "",
                                  "category4": "",
                                  "category5": "",
                                  "cf010301004": "",
                                  "cf020301004": "",
                                  "cf030301004": "",
                                  "cf040301004": "",
                                  "cf1": "",
                                  "cf2": "",
                                  "cf20160223001": "",
                                  "cf20160223002": "",
                                  "cf20160223004": "",
                                  "cf20160223005": "",
                                  "cf20160223007": "",
                                  "cf20160223008": "",
                                  "cf20160223009": "",
                                  "cf20160223010": "",
                                  "cf20160223020": "",
                                  "cf20160223021": "",
                                  "cf3": "",
                                  "cf4": "",
                                  "cf5": "",
                                  "cf6": "",
                                  "cf7": "",
                                  "cf8": "",
                                  "cf9": "",
                                  "cfdn1": "",
                                  "cfon1": "",
                                  "click": "",
                                  "clubtype": "",
                                  "color": "Black",
                                  "colors": "",
                                  "condition": "New",
                                  "content": "",
                                  "cost": "0.00",
                                  "countryregionofmanufactur": "",
                                  "crazynewstyle": "",
                                  "cupsize": "",
                                  "customname": "",
                                  "cut": "",
                                  "date": "2013-07-29 15:06:20",
                                  "datesold": "2018-07-18 01:11:40",
                                  "dateupdated": "2018-08-05 00:38:50",
                                  "deeey": "",
                                  "department": "",
                                  "description": "Android 2.2 operating system4G speedWi-FiMobile hotspot for up to 5users3.8\" WGA touch screen Requires a minimum data service starting at $15/month Early terminationfees will be prorated, starting at $325 minus $10 for each full month of service commitmentcompleted.",
                                  "dimweight": "1.56",
                                  "discountprice": "0.00",
                                  "domain": "",
                                  "dormanstock": "0",
                                  "dressshirtsize": "",
                                  "ean": "",
                                  "ebay2adult": "",
                                  "ebay2auctionsrelist": "",
                                  "ebay2autopay": "",
                                  "ebay2autorelistaction": "",
                                  "ebay2autorelistcount": "",
                                  "ebay2autorelistduration": "",
                                  "ebay2autorelistmax": "",
                                  "ebay2autorelistprice": "",
                                  "ebay2bestofferautoacceptprice": 0,
                                  "ebay2bestofferenabled": "",
                                  "ebay2bestofferminimumprice": 0,
                                  "ebay2buyitnow": 0,
                                  "ebay2catid": "0",
                                  "ebay2country": "",
                                  "ebay2currency": "",
                                  "ebay2description": "",
                                  "ebay2dispatch": "",
                                  "ebay2duration": "",
                                  "ebay2endtime": "",
                                  "ebay2fitmentcatalog": "",
                                  "ebay2getitfast": "",
                                  "ebay2holidayreturn": "",
                                  "ebay2id": "0",
                                  "ebay2internationalon": "",
                                  "ebay2listing": "",
                                  "ebay2location": "",
                                  "ebay2minimumadvertisedprice": "",
                                  "ebay2minimumadvertisedpriceexposure": "",
                                  "ebay2options": {
                                    "autorelist": {
                                      "action": "",
                                      "count": "",
                                      "duration": "",
                                      "max": "",
                                      "price": ""
                                    },
                                    "bestoffer": {
                                      "autoacceptprice": 0,
                                      "minimumprice": 0
                                    },
                                    "buyitnow": 0,
                                    "country": "",
                                    "dispatch": null,
                                    "duration": "",
                                    "fitmentcatalog": "",
                                    "internationalon": "",
                                    "listing": "",
                                    "location": "",
                                    "minimumadvertisedprice": "",
                                    "minimumadvertisedpriceexposure": "",
                                    "paymentinstructions": "",
                                    "paymentmethods": [
                                      ""
                                    ],
                                    "paymentprofileid": "",
                                    "returnprofileid": "",
                                    "returns": {
                                      "description": ""
                                    },
                                    "salestaxpercent": 0,
                                    "scheduletime": "",
                                    "secondcategory": "",
                                    "shipping": {
                                      "calculated": {
                                        "handlingfee": 0,
                                        "internationalhandlingfee": 0,
                                        "postalcode": "",
                                        "shippingirregular": false,
                                        "shippingpackage": ""
                                      },
                                      "domestic": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        }
                                      },
                                      "excludes": [
                                        ""
                                      ],
                                      "international": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "5": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        }
                                      }
                                    },
                                    "shippingprofileid": "",
                                    "shiptolocations": [
                                      ""
                                    ],
                                    "siteid": "",
                                    "siteshipping": "",
                                    "skip": "alwaysSkip",
                                    "subtitle": "",
                                    "taxcategory": "",
                                    "template": ""
                                  },
                                  "ebay2paymentinstructions": "",
                                  "ebay2paymentmethods": "",
                                  "ebay2paymentprofileid": "",
                                  "ebay2paypalemailaddress": "",
                                  "ebay2prefiliteminfo": "",
                                  "ebay2price": "0.00",
                                  "ebay2private": "",
                                  "ebay2promotionendtime": "",
                                  "ebay2promotionstarttime": "",
                                  "ebay2returnprofileid": "",
                                  "ebay2returnsdescription": "",
                                  "ebay2returnsrefund": "",
                                  "ebay2returnsrestockingfeevalue": "",
                                  "ebay2returnsreturnsaccepted": "",
                                  "ebay2returnsreturnswithin": "",
                                  "ebay2returnsshippingcostpaidby": "",
                                  "ebay2salestaxpercent": 0,
                                  "ebay2scheduletime": "",
                                  "ebay2secondcategory": "",
                                  "ebay2shippingcalculatedhandlingfee": 0,
                                  "ebay2shippingcalculatedinternationalhandlingfee": 0,
                                  "ebay2shippingcalculatedpostalcode": "",
                                  "ebay2shippingcalculatedshippingirregular": false,
                                  "ebay2shippingcalculatedshippingpackage": "",
                                  "ebay2shippingdomestic1additionalcost": 0,
                                  "ebay2shippingdomestic1cost": 0,
                                  "ebay2shippingdomestic1cutofftime": "",
                                  "ebay2shippingdomestic1expedited": "",
                                  "ebay2shippingdomestic1freeshipping": "",
                                  "ebay2shippingdomestic1handling": "",
                                  "ebay2shippingdomestic1insurancecost": 0,
                                  "ebay2shippingdomestic1localpickup": "",
                                  "ebay2shippingdomestic1service": "",
                                  "ebay2shippingdomestic1surcharge": 0,
                                  "ebay2shippingdomestic1timemax": 0,
                                  "ebay2shippingdomestic1timemin": 0,
                                  "ebay2shippingdomestic2additionalcost": 0,
                                  "ebay2shippingdomestic2cost": 0,
                                  "ebay2shippingdomestic2cutofftime": "",
                                  "ebay2shippingdomestic2expedited": "",
                                  "ebay2shippingdomestic2freeshipping": "",
                                  "ebay2shippingdomestic2handling": "",
                                  "ebay2shippingdomestic2insurancecost": 0,
                                  "ebay2shippingdomestic2localpickup": "",
                                  "ebay2shippingdomestic2service": "",
                                  "ebay2shippingdomestic2surcharge": 0,
                                  "ebay2shippingdomestic2timemax": 0,
                                  "ebay2shippingdomestic2timemin": 0,
                                  "ebay2shippingdomestic3additionalcost": 0,
                                  "ebay2shippingdomestic3cost": 0,
                                  "ebay2shippingdomestic3cutofftime": "",
                                  "ebay2shippingdomestic3expedited": "",
                                  "ebay2shippingdomestic3freeshipping": "",
                                  "ebay2shippingdomestic3handling": "",
                                  "ebay2shippingdomestic3insurancecost": 0,
                                  "ebay2shippingdomestic3localpickup": "",
                                  "ebay2shippingdomestic3service": "",
                                  "ebay2shippingdomestic3surcharge": 0,
                                  "ebay2shippingdomestic3timemax": 0,
                                  "ebay2shippingdomestic3timemin": 0,
                                  "ebay2shippingdomestic4additionalcost": 0,
                                  "ebay2shippingdomestic4cost": 0,
                                  "ebay2shippingdomestic4cutofftime": "",
                                  "ebay2shippingdomestic4expedited": "",
                                  "ebay2shippingdomestic4freeshipping": "",
                                  "ebay2shippingdomestic4handling": "",
                                  "ebay2shippingdomestic4insurancecost": 0,
                                  "ebay2shippingdomestic4localpickup": "",
                                  "ebay2shippingdomestic4service": "",
                                  "ebay2shippingdomestic4surcharge": 0,
                                  "ebay2shippingdomestic4timemax": 0,
                                  "ebay2shippingdomestic4timemin": 0,
                                  "ebay2shippingexcludes": "",
                                  "ebay2shippingglobal": "",
                                  "ebay2shippingincludedintax": "",
                                  "ebay2shippinginternational1additionalcost": 0,
                                  "ebay2shippinginternational1cost": 0,
                                  "ebay2shippinginternational1cutofftime": "",
                                  "ebay2shippinginternational1handling": "",
                                  "ebay2shippinginternational1insurancecost": 0,
                                  "ebay2shippinginternational1location": "",
                                  "ebay2shippinginternational1service": "",
                                  "ebay2shippinginternational2additionalcost": 0,
                                  "ebay2shippinginternational2cost": 0,
                                  "ebay2shippinginternational2cutofftime": "",
                                  "ebay2shippinginternational2handling": "",
                                  "ebay2shippinginternational2insurancecost": 0,
                                  "ebay2shippinginternational2location": "",
                                  "ebay2shippinginternational2service": "",
                                  "ebay2shippinginternational3additionalcost": 0,
                                  "ebay2shippinginternational3cost": 0,
                                  "ebay2shippinginternational3cutofftime": "",
                                  "ebay2shippinginternational3handling": "",
                                  "ebay2shippinginternational3insurancecost": 0,
                                  "ebay2shippinginternational3location": "",
                                  "ebay2shippinginternational3service": "",
                                  "ebay2shippinginternational4additionalcost": 0,
                                  "ebay2shippinginternational4cost": 0,
                                  "ebay2shippinginternational4cutofftime": "",
                                  "ebay2shippinginternational4handling": "",
                                  "ebay2shippinginternational4insurancecost": 0,
                                  "ebay2shippinginternational4location": "",
                                  "ebay2shippinginternational4service": "",
                                  "ebay2shippinginternational5additionalcost": 0,
                                  "ebay2shippinginternational5cost": 0,
                                  "ebay2shippinginternational5cutofftime": "",
                                  "ebay2shippinginternational5handling": "",
                                  "ebay2shippinginternational5insurancecost": 0,
                                  "ebay2shippinginternational5location": "",
                                  "ebay2shippinginternational5service": "",
                                  "ebay2shippingprofileid": "",
                                  "ebay2shippingratetabledom": "",
                                  "ebay2shippingratetableintl": "",
                                  "ebay2shippingtype": "",
                                  "ebay2shiptolocations": "",
                                  "ebay2siteid": "",
                                  "ebay2siteshipping": "",
                                  "ebay2skip": "alwaysSkip",
                                  "ebay2sku": "",
                                  "ebay2starttime": "",
                                  "ebay2storeid": "0",
                                  "ebay2storeid2": "0",
                                  "ebay2subtitle": "",
                                  "ebay2taxcategory": "",
                                  "ebay2template": "",
                                  "ebay2title": "",
                                  "ebay2upcnot": "",
                                  "ebay3adult": "",
                                  "ebay3auctionsrelist": "",
                                  "ebay3autopay": "",
                                  "ebay3autorelistaction": "",
                                  "ebay3autorelistcount": "",
                                  "ebay3autorelistduration": "",
                                  "ebay3autorelistmax": "",
                                  "ebay3autorelistprice": "",
                                  "ebay3bestofferautoacceptprice": 0,
                                  "ebay3bestofferenabled": "",
                                  "ebay3bestofferminimumprice": 0,
                                  "ebay3buyitnow": 0,
                                  "ebay3catid": "0",
                                  "ebay3country": "",
                                  "ebay3currency": "",
                                  "ebay3description": "",
                                  "ebay3dispatch": "",
                                  "ebay3duration": "",
                                  "ebay3endtime": "",
                                  "ebay3fitmentcatalog": "",
                                  "ebay3getitfast": "",
                                  "ebay3holidayreturn": "",
                                  "ebay3id": "0",
                                  "ebay3internationalon": "",
                                  "ebay3listing": "",
                                  "ebay3location": "",
                                  "ebay3minimumadvertisedprice": "",
                                  "ebay3minimumadvertisedpriceexposure": "",
                                  "ebay3options": {
                                    "autorelist": {
                                      "action": "",
                                      "count": "",
                                      "duration": "",
                                      "max": "",
                                      "price": ""
                                    },
                                    "bestoffer": {
                                      "autoacceptprice": 0,
                                      "minimumprice": 0
                                    },
                                    "buyitnow": 0,
                                    "country": "",
                                    "dispatch": null,
                                    "duration": "",
                                    "fitmentcatalog": "",
                                    "internationalon": "",
                                    "listing": "",
                                    "location": "",
                                    "minimumadvertisedprice": "",
                                    "minimumadvertisedpriceexposure": "",
                                    "paymentinstructions": "",
                                    "paymentmethods": [
                                      ""
                                    ],
                                    "paymentprofileid": "",
                                    "returnprofileid": "",
                                    "returns": {
                                      "description": ""
                                    },
                                    "salestaxpercent": 0,
                                    "scheduletime": "",
                                    "secondcategory": "",
                                    "shipping": {
                                      "calculated": {
                                        "handlingfee": 0,
                                        "internationalhandlingfee": 0,
                                        "postalcode": "",
                                        "shippingirregular": false,
                                        "shippingpackage": ""
                                      },
                                      "domestic": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        }
                                      },
                                      "excludes": [
                                        ""
                                      ],
                                      "international": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "5": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        }
                                      }
                                    },
                                    "shippingprofileid": "",
                                    "shiptolocations": [
                                      ""
                                    ],
                                    "siteid": "",
                                    "siteshipping": "",
                                    "subtitle": "",
                                    "taxcategory": "",
                                    "template": ""
                                  },
                                  "ebay3paymentinstructions": "",
                                  "ebay3paymentmethods": "",
                                  "ebay3paymentprofileid": "",
                                  "ebay3paypalemailaddress": "",
                                  "ebay3prefiliteminfo": "",
                                  "ebay3price": "0.00",
                                  "ebay3private": "",
                                  "ebay3promotionendtime": "",
                                  "ebay3promotionstarttime": "",
                                  "ebay3returnprofileid": "",
                                  "ebay3returnsdescription": "",
                                  "ebay3returnsrefund": "",
                                  "ebay3returnsrestockingfeevalue": "",
                                  "ebay3returnsreturnsaccepted": "",
                                  "ebay3returnsreturnswithin": "",
                                  "ebay3returnsshippingcostpaidby": "",
                                  "ebay3salestaxpercent": 0,
                                  "ebay3scheduletime": "",
                                  "ebay3secondcategory": "",
                                  "ebay3shippingcalculatedhandlingfee": 0,
                                  "ebay3shippingcalculatedinternationalhandlingfee": 0,
                                  "ebay3shippingcalculatedpostalcode": "",
                                  "ebay3shippingcalculatedshippingirregular": false,
                                  "ebay3shippingcalculatedshippingpackage": "",
                                  "ebay3shippingdomestic1additionalcost": 0,
                                  "ebay3shippingdomestic1cost": 0,
                                  "ebay3shippingdomestic1cutofftime": "",
                                  "ebay3shippingdomestic1expedited": "",
                                  "ebay3shippingdomestic1freeshipping": "",
                                  "ebay3shippingdomestic1handling": "",
                                  "ebay3shippingdomestic1insurancecost": 0,
                                  "ebay3shippingdomestic1localpickup": "",
                                  "ebay3shippingdomestic1service": "",
                                  "ebay3shippingdomestic1surcharge": 0,
                                  "ebay3shippingdomestic1timemax": 0,
                                  "ebay3shippingdomestic1timemin": 0,
                                  "ebay3shippingdomestic2additionalcost": 0,
                                  "ebay3shippingdomestic2cost": 0,
                                  "ebay3shippingdomestic2cutofftime": "",
                                  "ebay3shippingdomestic2expedited": "",
                                  "ebay3shippingdomestic2freeshipping": "",
                                  "ebay3shippingdomestic2handling": "",
                                  "ebay3shippingdomestic2insurancecost": 0,
                                  "ebay3shippingdomestic2localpickup": "",
                                  "ebay3shippingdomestic2service": "",
                                  "ebay3shippingdomestic2surcharge": 0,
                                  "ebay3shippingdomestic2timemax": 0,
                                  "ebay3shippingdomestic2timemin": 0,
                                  "ebay3shippingdomestic3additionalcost": 0,
                                  "ebay3shippingdomestic3cost": 0,
                                  "ebay3shippingdomestic3cutofftime": "",
                                  "ebay3shippingdomestic3expedited": "",
                                  "ebay3shippingdomestic3freeshipping": "",
                                  "ebay3shippingdomestic3handling": "",
                                  "ebay3shippingdomestic3insurancecost": 0,
                                  "ebay3shippingdomestic3localpickup": "",
                                  "ebay3shippingdomestic3service": "",
                                  "ebay3shippingdomestic3surcharge": 0,
                                  "ebay3shippingdomestic3timemax": 0,
                                  "ebay3shippingdomestic3timemin": 0,
                                  "ebay3shippingdomestic4additionalcost": 0,
                                  "ebay3shippingdomestic4cost": 0,
                                  "ebay3shippingdomestic4cutofftime": "",
                                  "ebay3shippingdomestic4expedited": "",
                                  "ebay3shippingdomestic4freeshipping": "",
                                  "ebay3shippingdomestic4handling": "",
                                  "ebay3shippingdomestic4insurancecost": 0,
                                  "ebay3shippingdomestic4localpickup": "",
                                  "ebay3shippingdomestic4service": "",
                                  "ebay3shippingdomestic4surcharge": 0,
                                  "ebay3shippingdomestic4timemax": 0,
                                  "ebay3shippingdomestic4timemin": 0,
                                  "ebay3shippingexcludes": "",
                                  "ebay3shippingglobal": "",
                                  "ebay3shippingincludedintax": "",
                                  "ebay3shippinginternational1additionalcost": 0,
                                  "ebay3shippinginternational1cost": 0,
                                  "ebay3shippinginternational1cutofftime": "",
                                  "ebay3shippinginternational1handling": "",
                                  "ebay3shippinginternational1insurancecost": 0,
                                  "ebay3shippinginternational1location": "",
                                  "ebay3shippinginternational1service": "",
                                  "ebay3shippinginternational2additionalcost": 0,
                                  "ebay3shippinginternational2cost": 0,
                                  "ebay3shippinginternational2cutofftime": "",
                                  "ebay3shippinginternational2handling": "",
                                  "ebay3shippinginternational2insurancecost": 0,
                                  "ebay3shippinginternational2location": "",
                                  "ebay3shippinginternational2service": "",
                                  "ebay3shippinginternational3additionalcost": 0,
                                  "ebay3shippinginternational3cost": 0,
                                  "ebay3shippinginternational3cutofftime": "",
                                  "ebay3shippinginternational3handling": "",
                                  "ebay3shippinginternational3insurancecost": 0,
                                  "ebay3shippinginternational3location": "",
                                  "ebay3shippinginternational3service": "",
                                  "ebay3shippinginternational4additionalcost": 0,
                                  "ebay3shippinginternational4cost": 0,
                                  "ebay3shippinginternational4cutofftime": "",
                                  "ebay3shippinginternational4handling": "",
                                  "ebay3shippinginternational4insurancecost": 0,
                                  "ebay3shippinginternational4location": "",
                                  "ebay3shippinginternational4service": "",
                                  "ebay3shippinginternational5additionalcost": 0,
                                  "ebay3shippinginternational5cost": 0,
                                  "ebay3shippinginternational5cutofftime": "",
                                  "ebay3shippinginternational5handling": "",
                                  "ebay3shippinginternational5insurancecost": 0,
                                  "ebay3shippinginternational5location": "",
                                  "ebay3shippinginternational5service": "",
                                  "ebay3shippingprofileid": "",
                                  "ebay3shippingratetabledom": "",
                                  "ebay3shippingratetableintl": "",
                                  "ebay3shippingtype": "",
                                  "ebay3shiptolocations": "",
                                  "ebay3siteid": "",
                                  "ebay3siteshipping": "",
                                  "ebay3skip": "",
                                  "ebay3sku": "",
                                  "ebay3starttime": "",
                                  "ebay3storeid": "0",
                                  "ebay3storeid2": "0",
                                  "ebay3subtitle": "",
                                  "ebay3taxcategory": "",
                                  "ebay3template": "",
                                  "ebay3title": "",
                                  "ebay3upcnot": "",
                                  "ebayadult": "",
                                  "ebayauctionsrelist": "",
                                  "ebayautopay": "",
                                  "ebayautorelistaction": "",
                                  "ebayautorelistcount": "",
                                  "ebayautorelistduration": "",
                                  "ebayautorelistmax": "",
                                  "ebayautorelistprice": "",
                                  "ebaybestofferautoacceptprice": 0,
                                  "ebaybestofferenabled": "",
                                  "ebaybestofferminimumprice": 0,
                                  "ebaybuyitnow": 0,
                                  "ebaycatid": "0",
                                  "ebaycountry": "",
                                  "ebaycurrency": "",
                                  "ebaydescription": "",
                                  "ebaydispatch": "",
                                  "ebayduration": "",
                                  "ebayendtime": "",
                                  "ebayepid": "0",
                                  "ebayfitmentcatalog": "",
                                  "ebaygetitfast": "",
                                  "ebayholidayreturn": "",
                                  "ebayid": "0",
                                  "ebayinternationalon": "",
                                  "ebayitemspecificsmapprice": "",
                                  "ebayitemspecificswarranty": "",
                                  "ebayktype": "",
                                  "ebaylisting": "",
                                  "ebaylocation": "",
                                  "ebayminimumadvertisedprice": "",
                                  "ebayminimumadvertisedpriceexposure": "",
                                  "ebayoptions": {
                                    "autorelist": {
                                      "action": "",
                                      "count": "",
                                      "duration": "",
                                      "max": "",
                                      "price": ""
                                    },
                                    "bestoffer": {
                                      "autoacceptprice": 0,
                                      "minimumprice": 0
                                    },
                                    "buyitnow": 0,
                                    "country": "",
                                    "dispatch": null,
                                    "duration": "",
                                    "fitmentcatalog": "",
                                    "internationalon": "",
                                    "itemspecifics": [],
                                    "listing": "",
                                    "location": "",
                                    "minimumadvertisedprice": "",
                                    "minimumadvertisedpriceexposure": "",
                                    "paymentinstructions": "",
                                    "paymentmethods": [
                                      ""
                                    ],
                                    "paymentprofileid": "-1",
                                    "returnprofileid": "-1",
                                    "returns": {
                                      "description": ""
                                    },
                                    "salestaxpercent": 0,
                                    "scheduletime": "",
                                    "secondcategory": "",
                                    "shipping": {
                                      "calculated": {
                                        "handlingfee": 0,
                                        "internationalhandlingfee": 0,
                                        "postalcode": "",
                                        "shippingirregular": false,
                                        "shippingpackage": ""
                                      },
                                      "domestic": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        }
                                      },
                                      "excludes": [
                                        ""
                                      ],
                                      "international": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "5": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        }
                                      }
                                    },
                                    "shippingprofileid": "-1",
                                    "shiptolocations": [
                                      ""
                                    ],
                                    "siteid": "",
                                    "siteshipping": "",
                                    "skip": "alwaysSkip",
                                    "subtitle": "",
                                    "taxcategory": "",
                                    "template": ""
                                  },
                                  "ebaypaymentinstructions": "",
                                  "ebaypaymentmethods": "",
                                  "ebaypaymentprofileid": "-1",
                                  "ebaypaypalemailaddress": "",
                                  "ebayprefiliteminfo": "",
                                  "ebayprice": "59.99",
                                  "ebayprivate": "",
                                  "ebayproductid": "",
                                  "ebaypromotionendtime": "",
                                  "ebaypromotionstarttime": "",
                                  "ebayreturnprofileid": "-1",
                                  "ebayreturnsdescription": "",
                                  "ebayreturnsrefund": "",
                                  "ebayreturnsrestockingfeevalue": "",
                                  "ebayreturnsreturnsaccepted": "",
                                  "ebayreturnsreturnswithin": "",
                                  "ebayreturnsshippingcostpaidby": "",
                                  "ebaysalestaxpercent": 0,
                                  "ebayscheduletime": "",
                                  "ebaysecondcategory": "",
                                  "ebayshippingcalculatedhandlingfee": 0,
                                  "ebayshippingcalculatedinternationalhandlingfee": 0,
                                  "ebayshippingcalculatedpostalcode": "",
                                  "ebayshippingcalculatedshippingirregular": false,
                                  "ebayshippingcalculatedshippingpackage": "",
                                  "ebayshippingdomestic1additionalcost": 0,
                                  "ebayshippingdomestic1cost": 0,
                                  "ebayshippingdomestic1cutofftime": "",
                                  "ebayshippingdomestic1expedited": "",
                                  "ebayshippingdomestic1freeshipping": "",
                                  "ebayshippingdomestic1handling": "",
                                  "ebayshippingdomestic1insurancecost": 0,
                                  "ebayshippingdomestic1localpickup": "",
                                  "ebayshippingdomestic1service": "",
                                  "ebayshippingdomestic1surcharge": 0,
                                  "ebayshippingdomestic1timemax": 0,
                                  "ebayshippingdomestic1timemin": 0,
                                  "ebayshippingdomestic2additionalcost": 0,
                                  "ebayshippingdomestic2cost": 0,
                                  "ebayshippingdomestic2cutofftime": "",
                                  "ebayshippingdomestic2expedited": "",
                                  "ebayshippingdomestic2freeshipping": "",
                                  "ebayshippingdomestic2handling": "",
                                  "ebayshippingdomestic2insurancecost": 0,
                                  "ebayshippingdomestic2localpickup": "",
                                  "ebayshippingdomestic2service": "",
                                  "ebayshippingdomestic2surcharge": 0,
                                  "ebayshippingdomestic2timemax": 0,
                                  "ebayshippingdomestic2timemin": 0,
                                  "ebayshippingdomestic3additionalcost": 0,
                                  "ebayshippingdomestic3cost": 0,
                                  "ebayshippingdomestic3cutofftime": "",
                                  "ebayshippingdomestic3expedited": "",
                                  "ebayshippingdomestic3freeshipping": "",
                                  "ebayshippingdomestic3handling": "",
                                  "ebayshippingdomestic3insurancecost": 0,
                                  "ebayshippingdomestic3localpickup": "",
                                  "ebayshippingdomestic3service": "",
                                  "ebayshippingdomestic3surcharge": 0,
                                  "ebayshippingdomestic3timemax": 0,
                                  "ebayshippingdomestic3timemin": 0,
                                  "ebayshippingdomestic4additionalcost": 0,
                                  "ebayshippingdomestic4cost": 0,
                                  "ebayshippingdomestic4cutofftime": "",
                                  "ebayshippingdomestic4expedited": "",
                                  "ebayshippingdomestic4freeshipping": "",
                                  "ebayshippingdomestic4handling": "",
                                  "ebayshippingdomestic4insurancecost": 0,
                                  "ebayshippingdomestic4localpickup": "",
                                  "ebayshippingdomestic4service": "",
                                  "ebayshippingdomestic4surcharge": 0,
                                  "ebayshippingdomestic4timemax": 0,
                                  "ebayshippingdomestic4timemin": 0,
                                  "ebayshippingexcludes": "",
                                  "ebayshippingglobal": "",
                                  "ebayshippingincludedintax": "",
                                  "ebayshippinginternational1additionalcost": 0,
                                  "ebayshippinginternational1cost": 0,
                                  "ebayshippinginternational1cutofftime": "",
                                  "ebayshippinginternational1handling": "",
                                  "ebayshippinginternational1insurancecost": 0,
                                  "ebayshippinginternational1location": "",
                                  "ebayshippinginternational1service": "",
                                  "ebayshippinginternational2additionalcost": 0,
                                  "ebayshippinginternational2cost": 0,
                                  "ebayshippinginternational2cutofftime": "",
                                  "ebayshippinginternational2handling": "",
                                  "ebayshippinginternational2insurancecost": 0,
                                  "ebayshippinginternational2location": "",
                                  "ebayshippinginternational2service": "",
                                  "ebayshippinginternational3additionalcost": 0,
                                  "ebayshippinginternational3cost": 0,
                                  "ebayshippinginternational3cutofftime": "",
                                  "ebayshippinginternational3handling": "",
                                  "ebayshippinginternational3insurancecost": 0,
                                  "ebayshippinginternational3location": "",
                                  "ebayshippinginternational3service": "",
                                  "ebayshippinginternational4additionalcost": 0,
                                  "ebayshippinginternational4cost": 0,
                                  "ebayshippinginternational4cutofftime": "",
                                  "ebayshippinginternational4handling": "",
                                  "ebayshippinginternational4insurancecost": 0,
                                  "ebayshippinginternational4location": "",
                                  "ebayshippinginternational4service": "",
                                  "ebayshippinginternational5additionalcost": 0,
                                  "ebayshippinginternational5cost": 0,
                                  "ebayshippinginternational5cutofftime": "",
                                  "ebayshippinginternational5handling": "",
                                  "ebayshippinginternational5insurancecost": 0,
                                  "ebayshippinginternational5location": "",
                                  "ebayshippinginternational5service": "",
                                  "ebayshippingprofileid": "-1",
                                  "ebayshippingratetabledom": "",
                                  "ebayshippingratetableintl": "",
                                  "ebayshippingtype": "",
                                  "ebayshiptolocations": "",
                                  "ebaysiteid": "",
                                  "ebaysiteshipping": "",
                                  "ebayskip": "alwaysSkip",
                                  "ebaysku": "",
                                  "ebaystarttime": "",
                                  "ebaystoreid": "0",
                                  "ebaystoreid2": "0",
                                  "ebaysubtitle": "",
                                  "ebaytaxcategory": "",
                                  "ebaytemplate": "",
                                  "ebaytitle": "",
                                  "ebayupcnot": "",
                                  "etsycategoryid": "",
                                  "etsydescription": "",
                                  "etsyiscustomizable": "",
                                  "etsyissupply": "",
                                  "etsylistingid": "0",
                                  "etsymaterials": "",
                                  "etsynontaxable": "",
                                  "etsyoccasion": "",
                                  "etsyoptions": {
                                    "category_id": "",
                                    "description": "",
                                    "is_customizable": "",
                                    "is_supply": "",
                                    "materials": "",
                                    "non_taxable": "",
                                    "occasion": "",
                                    "opts_listing_id": "",
                                    "price": "",
                                    "recipient": "",
                                    "shipping_template_id": "",
                                    "shop_section_id": "",
                                    "skip": "",
                                    "state": "",
                                    "title": "",
                                    "variant_keys": "",
                                    "when_made": "",
                                    "who_made": ""
                                  },
                                  "etsyoptslistingid": "",
                                  "etsyprice": "",
                                  "etsyrecipient": "",
                                  "etsyshippingtemplateid": "",
                                  "etsyshopsectionid": "",
                                  "etsyskip": "",
                                  "etsystate": "",
                                  "etsytitle": "",
                                  "etsyvariantkeys": "",
                                  "etsywhenmade": "",
                                  "etsywhomade": "",
                                  "exportlabel": "",
                                  "featured": "0",
                                  "flavor": "",
                                  "floormatlogo": "",
                                  "fulfillmentlatency": "0",
                                  "galleryuri": "",
                                  "geolocation": "",
                                  "googlecategory": "",
                                  "googleshopping": "1",
                                  "googleshopurl": "",
                                  "guid": "U8800",
                                  "guidad": "",
                                  "handlingfee": "0.00",
                                  "hosierysize": "",
                                  "htmltitle": "",
                                  "id": "1",
                                  "importfield": "",
                                  "inseam": "",
                                  "internationalshipping1": "0.00",
                                  "intimatessleepsizewomens": "",
                                  "isbn": "",
                                  "iskit": "0",
                                  "iskit_calculated_cost": false,
                                  "iskit_calculated_price": false,
                                  "jacketlength": "",
                                  "jacketsize": "",
                                  "keywords": "",
                                  "longdescription": "<p>Stay connected to friends and family with this mobile phone thatfeatures 4G speed, Wi-Fi and an Android 2.2 operating system for enhanced productivity on the go.The 5.0MP digital camera features a 4x zoom and autofocus for clear photos. Requires a minimumdata service starting at $15/month. Early termination fees will be prorated, starting at $325 minus $10for each full month of service commitment completed.</p>",
                                  "magento2attributeset": "",
                                  "magento2categories": "",
                                  "magento2description": "",
                                  "magento2listingid": "",
                                  "magento2metadescription": "",
                                  "magento2metakeyword": "",
                                  "magento2metatitle": "",
                                  "magento2name": "",
                                  "magento2oldlistingid": "",
                                  "magento2oldsku": "",
                                  "magento2options": {
                                    "attribute_set": "",
                                    "price": "59.99",
                                    "tax_class_id": ""
                                  },
                                  "magento2parentsku": "",
                                  "magento2price": "59.99",
                                  "magento2shortdescription": "",
                                  "magento2skip": "",
                                  "magento2sku": "",
                                  "magento2storepath": "",
                                  "magento2taxclassid": "",
                                  "magento2urlkey": "",
                                  "magento2urlpath": "",
                                  "magentoattributeset": "",
                                  "magentocategories": "",
                                  "magentodescription": "",
                                  "magentolistingid": "",
                                  "magentometadescription": "",
                                  "magentometakeyword": "",
                                  "magentometatitle": "",
                                  "magentoname": "",
                                  "magentooldlistingid": "",
                                  "magentooldsku": "",
                                  "magentooptions": {
                                    "attribute_set": "",
                                    "categories": "",
                                    "description": "",
                                    "meta_description": "",
                                    "meta_keyword": "",
                                    "meta_title": "",
                                    "name": "",
                                    "old_listing_id": "",
                                    "old_sku": "",
                                    "parent_sku": "",
                                    "price": "",
                                    "short_description": "",
                                    "skip": "",
                                    "store_path": "",
                                    "tax_class_id": "",
                                    "url_key": "",
                                    "url_path": ""
                                  },
                                  "magentoparentsku": "",
                                  "magentoprice": "",
                                  "magentoshortdescription": "",
                                  "magentoskip": "",
                                  "magentosku": "",
                                  "magentostorepath": "",
                                  "magentotaxclassid": "",
                                  "magentourlkey": "",
                                  "magentourlpath": "",
                                  "manufacturer": "",
                                  "manufacturerpartnumber": "",
                                  "mapprice": "0.00",
                                  "material": "",
                                  "maxstock": "0",
                                  "media1": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                                  "media10": "",
                                  "media10alttext": "",
                                  "media11alttext": "",
                                  "media1alttext": "",
                                  "media2": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black-2.jpg",
                                  "media2alttext": "",
                                  "media3": "",
                                  "media3alttext": "",
                                  "media4": "",
                                  "media4alttext": "",
                                  "media5": "",
                                  "media5alttext": "",
                                  "media6": "",
                                  "media6alttext": "",
                                  "media7": "",
                                  "media7alttext": "",
                                  "media8": "",
                                  "media8alttext": "",
                                  "media9": "",
                                  "media9alttext": "",
                                  "mediacount": "2",
                                  "mediax": "",
                                  "metadescription": "",
                                  "metal": "",
                                  "meyersku": "",
                                  "meyerstock": "0",
                                  "minstock": "0",
                                  "model": "",
                                  "modelnumber": "",
                                  "mpn": "",
                                  "msrp": "0.00",
                                  "name": "yesatt",
                                  "nameofnewfield": "",
                                  "newbccffield1": "",
                                  "notes": "",
                                  "numberofitems": "",
                                  "packagequantity": "",
                                  "parenturi": "android-smartphones",
                                  "pl20160304001": "",
                                  "pl20160304003": "",
                                  "preexistingcustomarc005": "",
                                  "price": "59.99",
                                  "productshippingtemplate": "",
                                  "producttaxcode": "",
                                  "producttype": "",
                                  "registeredparameter": "",
                                  "releasedate": "",
                                  "ringsize": "",
                                  "rule": "update",
                                  "shelfdescription": "",
                                  "shipping": "0.00",
                                  "shippingadditional": "0.00",
                                  "size": "8gb",
                                  "sizemens": "",
                                  "sizetype": "",
                                  "sizewomens": "",
                                  "sku": "U8800",
                                  "skuvaultbrand": "",
                                  "skuvaultclassification": "",
                                  "skuvaultcode": "",
                                  "skuvaultcost": "",
                                  "skuvaultdescription": "",
                                  "skuvaultiskit": "",
                                  "skuvaultislisted": "",
                                  "skuvaultlocationinfo": "",
                                  "skuvaultoptions": {
                                    "Brand": "",
                                    "Classification": "",
                                    "Code": "",
                                    "Cost": "",
                                    "Description": "",
                                    "PartNumber": "",
                                    "QuantityAvailable": "",
                                    "RetailPrice": "",
                                    "SalePrice": "",
                                    "Supplier": "",
                                    "isListed": "",
                                    "iskit": "",
                                    "locationInfo": "",
                                    "skip": ""
                                  },
                                  "skuvaultpartnumber": "",
                                  "skuvaultquantityavailable": "",
                                  "skuvaultretailprice": "",
                                  "skuvaultsaleprice": "",
                                  "skuvaultskip": "",
                                  "skuvaultsku": "",
                                  "skuvaultsupplier": "",
                                  "sleevelength": "",
                                  "socksize": "",
                                  "state": "active",
                                  "status": "publish",
                                  "stock": "1",
                                  "style": "Matte",
                                  "test": "",
                                  "test2": "",
                                  "testfield3": "",
                                  "testx1": "",
                                  "threadcolor": "",
                                  "title": "AT&T Impulse 4G Mobile Phone - Black",
                                  "total_stock": "4",
                                  "totalsold": "5",
                                  "transamericansku": "",
                                  "transamericanstock": "0",
                                  "tx1": "",
                                  "tx10": "",
                                  "tx11": "",
                                  "tx12": "",
                                  "tx13": "",
                                  "tx3": "",
                                  "type": "",
                                  "upc": "",
                                  "updatenotes": "",
                                  "updatereason": "S*S*S*S*S",
                                  "uri": "att-impulse-4g-mobile-phone-black-u8800",
                                  "usertype": "",
                                  "userupc": "",
                                  "usshoesizemens": "",
                                  "usshoesizewomens": "",
                                  "variationtheme": "",
                                  "vendorstock": "3",
                                  "waistsize": "",
                                  "walmartcategory": "",
                                  "walmartdescription": "",
                                  "walmartenqueued": "",
                                  "walmartinprogress": "0",
                                  "walmartislisted": "0",
                                  "walmartmedia": "",
                                  "walmartname": "",
                                  "walmartoptions": {
                                    "category": "",
                                    "description": "",
                                    "enqueued": "",
                                    "media": "",
                                    "name": "",
                                    "price": "",
                                    "skip": "",
                                    "url": ""
                                  },
                                  "walmartprice": "",
                                  "walmartskip": "",
                                  "walmartsku": "",
                                  "walmartstatus": "",
                                  "walmarturl": "",
                                  "warranty": "",
                                  "weight": "0.50",
                                  "wmcategory": "",
                                  "wmtaxcode": "",
                                  "working": ""
                                }
                              },
                              "itemid": "456",
                              "media": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                              "price": "13.17",
                              "quantity": "1",
                              "sku": "U8800",
                              "source": "",
                              "title": "mpulse 4G Mobile Phone Case",
                              "weight": "1.00"
                            }
                          ],
                          "itemtotal": "13.17",
                          "meta": [],
                          "oid": "353",
                          "oidconsolidate": "0",
                          "order": "custom12345",
                          "ordernumber": "12345",
                          "payment": "Visa",
                          "paymentdate": "2018-06-27 13:38:25",
                          "paymentstatus": "COMPLETE",
                          "refunds": [],
                          "shipments": [
                            {
                              "shipcarrier": "FedEx",
                              "shipcost": "0.00",
                              "shipdate": "2018-07-01 00:00:01",
                              "shipdetails": [],
                              "shipid": "49",
                              "shipservice": "",
                              "shiptracking": "9999999999",
                              "shipuser": ""
                            }
                          ],
                          "shipping": {
                            "city": "New York",
                            "company": "",
                            "country": "US",
                            "firstname": "Test",
                            "lastname": "User",
                            "middlename": "",
                            "phone": "877-773-6755",
                            "phone2": "",
                            "postalcode": "10010",
                            "stateprovince": "NY",
                            "street1": "115 E 23rd St",
                            "street2": "FL 3",
                            "street3": ""
                          },
                          "shippingcarrier": "FedEx",
                          "shippingservice": "Standard",
                          "shippingstatus": "COMPLETE",
                          "shippingtotal": "0.00",
                          "status": "COMPLETE",
                          "taxtotal": "0.00",
                          "total": "13.17",
                          "transactionid": "30090115962746"
                        }
                      ],
                      "timestamp": "2018-08-11T20:04:35Z"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Orders Requests"
        ],
        "description": "+ Description: Use the orders endpoint without the `oid` to return a list of orders. Note: by default the API will return all orders, including `archived` ones. When SureDone imports multi item eBay orders, the system currently imports the line item as a separate order and then uses internal mechanisms combine in a single order. To accommodate this, you may filter archived orders out using the search: `archived:=0`\n\nOption GET parameters include:\n\n- `page`: return paginated results by page number\n\n- `sort`: return results sorted by valid key\n\n- `sortorder`: accepts either `desc` or `asc`\n\n- `q`: valid search to restrict search results\n\n- `lineitem`: return results in line item format, accepts boolean\n\n- `lineitem_filter`: for orders with multiple items not meeting `q` search criteria, do not return order items, accepts boolean\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|oid|database ID, integer Must be supplied as identifier if “order” is not supplied as the identifier.|Yes for combine and split orders|\n|order|concatenation of “channel” and “ordernumber” which may be used as an identifier.||\n|ordernumber|order number, 100 character limit|Yes for create order|\n|channel|channel where the order was originated, 50 character limit||\n|instance|for orders imported via SureDone, the integration instance of the channel||\n|details|channel specific order details encoded as JSON such as item fees and delivery estimates||\n|date|date of order, converted to timezone configured in user’s SureDone settings||\n|dateutc|date or order in UTC||\n|dateupdated|last modified date of order, converted to timezone configured in SureDone account||\n|oidconsolidate|oid of archived or parent order in split and combined orders respectively||\n|gift|whether order was marked as a gift, boolean||\n|comments|order comments||\n|internalnotes|array of internal notes indexed by date of each note and encoded as JSON, sending in “internalnotesoverwrite” with a non-false value will overwrite all contents of this field||\n|status|order status with value one of “INCOMPLETE”, “READY”, “PENDING”, “ORDERED”, “DROPSHIPPED”, “COMPLETE” or “ARCHIVED”||\n|transactionid|transaction ID of the order, may correlate to a system identifier required by the channel for fulfilling the order||\n|correlationid|correlation ID for the payment of the order||\n|payment|payment method of the order||\n|paymentdate|date of payment to mark paymentstatus as COMPLETE||\n|paymentstatus|payment status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”||\n|shippingcarrier|buyer requested shipping carrier||\n|shippingservice|buyer requested shipping service||\n|shippingstatus|shipping status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”, sending “COMPLETE” will mark order as “shipped” on external channels||\n|total|order total including all taxes, shipping, handling and discounts|Yes for create order|\n|itemtotal|total of all order items||\n|shippingtotal|total of all shipping costs charged||\n|handlingtotal|total of all handling charged||\n|taxtotal|total of all taxes charged||\n|discounttotal|total of all discounts applied to order||\n|discountcode|code used to generate discount, 50 character limit||\n|currency|currency code of the order, 10 character limit||\n|account|account id of suredone storefront user||\n|archived|whether order has been “deleted”, boolean||\n|meta|miscellaneous order data JSON encoded including but not limited to raw payloads from channel imports and raw validated addresses||\n|email|email of customer||\n|billing|address data object for billing contact||\n|billing > country|country of billing contact||\n|billing > firstname|first name of billing contact||\n|billing > middlename|middle name of billing contact||\n|billing > lastname|last name of billing contact||\n|billing > company|company of billing contact||\n|billing > streetl|address street of billing contact||\n|billing > street2|address street 2 of billing contact||\n|billing > street3|address street 3 of billing contact||\n|billing > city|city of billing contact||\n|billing > stateprovince|state or province of billing contact||\n|billing > postalcode|postal code of billing contact||\n|billing > phone|phone number of billing contact||\n|billing > phone2|second phone number of billing contact||\n|shipping|address data object for shipping contact||\n|shipping > country|country of shipping contact||\n|shipping > firstname|first name of shipping contact||\n|shipping > middlename|middle name of shipping contact||\n|shipping > lastname|last name of shipping contact||\n|shipping > company|company of shipping contact||\n|shipping > streetl|address street of shipping contact||\n|shipping > street2|address street 2 of shipping contact||\n|shipping > street3|address street 3 of shipping contact||\n|shipping > city|city of shipping contact||\n|shipping > stateprovince|state or province of shipping contact||\n|shipping > postalcode|postal code of shipping contact||\n|shipping > phone|phone number of shipping contact||\n|shipping > phone2|second phone number of shipping contact||\n|items|order items object with one or more items, for products that exist in SureDone the following fields may be populated if they are missing during order creation|Yes for create order|\n|items > itemid|order item id, required for updating order item data||\n|items > sku|order item SKU, for products matching in SureDone this will be the “guid”, 100 character limit||\n|items > title|order item title, 500 character limit||\n|items > price|order item price||\n|items > quantity|order item quantity purchased||\n|items > media|order item image URL||\n|items > weight|order item weight||\n|items > dimweight|order item dim weight||\n|items > boxlength|order item box length||\n|items > boxwidth|order item box width||\n|items > boxheight|order item box height||\n|items > source|order item stock (warehouse) source as determined by product stock levels for products that exist in SureDone||\n|items > itemdetails|order item details JSON encoded including but not limited to full product payload for products existing in SureDone at the time of order creation||\n|items > itemstatus|order item status||\n|items > vendor|order item vendor||\n|items > purchaseorderid|order item purchase order for vendors and/or erp||\n|items > “customfields”|order item custom fields created||\n|shipments|order shipments object with one or more shipments||\n|shipments > shipid|order shipment id, required when updating an existing shipment post creation||\n|shipments > shipcarrier|order shipment carrier||\n|shipments > shipservice|order shipment service||\n|shipments > shiptracking|order shipment tracking number||\n|shipments > shipdate|date of order shipment||\n|shipments > shipcost|cost of order shipment||\n|shipments > shipuser|user who generated order shipment||\n|shipments > shipdetails|order shipment details JSON encoded including but not limited to fulfillment order item data in the case of short shipping||\n|shipments > shipdetails > items|order shipment package line item sku and quantity details, supported via API parameters `shipitems` or `shipsku` with `shipquantity`. Example `{\"shipments\":[{\"shiptracking\":\"123123123123\",\"shipdate\":\"NOW\",\"shipitems\":[{\"sku\":\"U8800ZZZ\",\"quantity\":1,\"fulfilled\":null}]}]}`. Optionally, you may use `shipskufield` and `shipskuvalue` to internally map `shipsku` to an `order.item.sku` via matching where `order.item.itemdetails.product.{shipskufield} = shipskuvalue`.||\n|refunds|order refunds object with one or more refunds||\n|refunds > refundid|order refund id, required for updating an order refund||\n|refunds > refunddate|date of order refund||\n|refunds > refunddetails|order refund details JSON encoded||\n|refunds > refunddetails > items|order refund line item sku and quantity details, supported via API parameters `refunditems` or `refundsku` with `refundquantity`.||",
        "operationId": "getOrders",
        "summary": "Get orders"
      }
    },
    "/v3/orders/combine": {
      "post": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `combineOrders`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Combine orders — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "oid": 357,
                    "results": {
                      "successful": [
                        {
                          "code": 1,
                          "message": "Order created successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "oid": {
                      "type": "number"
                    },
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "oid": 357,
                      "results": {
                        "successful": [
                          {
                            "code": 1,
                            "message": "Order created successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Orders Requests"
        ],
        "description": "|Field|Description|Required|\n|:--------------|----------|--------|\n|oid|database ID, integer Must be supplied as identifier if “order” is not supplied as the identifier.|Yes for combine and split orders|\n|order|concatenation of “channel” and “ordernumber” which may be used as an identifier.||\n|ordernumber|order number, 100 character limit|Yes for create order|\n|channel|channel where the order was originated, 50 character limit||\n|instance|for orders imported via SureDone, the integration instance of the channel||\n|details|channel specific order details encoded as JSON such as item fees and delivery estimates||\n|date|date of order, converted to timezone configured in user’s SureDone settings||\n|dateutc|date or order in UTC||\n|dateupdated|last modified date of order, converted to timezone configured in SureDone account||\n|oidconsolidate|oid of archived or parent order in split and combined orders respectively||\n|gift|whether order was marked as a gift, boolean||\n|comments|order comments||\n|internalnotes|array of internal notes indexed by date of each note and encoded as JSON, sending in “internalnotesoverwrite” with a non-false value will overwrite all contents of this field||\n|status|order status with value one of “INCOMPLETE”, “READY”, “PENDING”, “ORDERED”, “DROPSHIPPED”, “COMPLETE” or “ARCHIVED”||\n|transactionid|transaction ID of the order, may correlate to a system identifier required by the channel for fulfilling the order||\n|correlationid|correlation ID for the payment of the order||\n|payment|payment method of the order||\n|paymentdate|date of payment to mark paymentstatus as COMPLETE||\n|paymentstatus|payment status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”||\n|shippingcarrier|buyer requested shipping carrier||\n|shippingservice|buyer requested shipping service||\n|shippingstatus|shipping status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”, sending “COMPLETE” will mark order as “shipped” on external channels||\n|total|order total including all taxes, shipping, handling and discounts|Yes for create order|\n|itemtotal|total of all order items||\n|shippingtotal|total of all shipping costs charged||\n|handlingtotal|total of all handling charged||\n|taxtotal|total of all taxes charged||\n|discounttotal|total of all discounts applied to order||\n|discountcode|code used to generate discount, 50 character limit||\n|currency|currency code of the order, 10 character limit||\n|account|account id of suredone storefront user||\n|archived|whether order has been “deleted”, boolean||\n|meta|miscellaneous order data JSON encoded including but not limited to raw payloads from channel imports and raw validated addresses||\n|email|email of customer||\n|billing|address data object for billing contact||\n|billing > country|country of billing contact||\n|billing > firstname|first name of billing contact||\n|billing > middlename|middle name of billing contact||\n|billing > lastname|last name of billing contact||\n|billing > company|company of billing contact||\n|billing > streetl|address street of billing contact||\n|billing > street2|address street 2 of billing contact||\n|billing > street3|address street 3 of billing contact||\n|billing > city|city of billing contact||\n|billing > stateprovince|state or province of billing contact||\n|billing > postalcode|postal code of billing contact||\n|billing > phone|phone number of billing contact||\n|billing > phone2|second phone number of billing contact||\n|shipping|address data object for shipping contact||\n|shipping > country|country of shipping contact||\n|shipping > firstname|first name of shipping contact||\n|shipping > middlename|middle name of shipping contact||\n|shipping > lastname|last name of shipping contact||\n|shipping > company|company of shipping contact||\n|shipping > streetl|address street of shipping contact||\n|shipping > street2|address street 2 of shipping contact||\n|shipping > street3|address street 3 of shipping contact||\n|shipping > city|city of shipping contact||\n|shipping > stateprovince|state or province of shipping contact||\n|shipping > postalcode|postal code of shipping contact||\n|shipping > phone|phone number of shipping contact||\n|shipping > phone2|second phone number of shipping contact||\n|items|order items object with one or more items, for products that exist in SureDone the following fields may be populated if they are missing during order creation|Yes for create order|\n|items > itemid|order item id, required for updating order item data||\n|items > sku|order item SKU, for products matching in SureDone this will be the “guid”, 100 character limit||\n|items > title|order item title, 500 character limit||\n|items > price|order item price||\n|items > quantity|order item quantity purchased||\n|items > media|order item image URL||\n|items > weight|order item weight||\n|items > dimweight|order item dim weight||\n|items > boxlength|order item box length||\n|items > boxwidth|order item box width||\n|items > boxheight|order item box height||\n|items > source|order item stock (warehouse) source as determined by product stock levels for products that exist in SureDone||\n|items > itemdetails|order item details JSON encoded including but not limited to full product payload for products existing in SureDone at the time of order creation||\n|items > itemstatus|order item status||\n|items > vendor|order item vendor||\n|items > purchaseorderid|order item purchase order for vendors and/or erp||\n|items > “customfields”|order item custom fields created||\n|shipments|order shipments object with one or more shipments||\n|shipments > shipid|order shipment id, required when updating an existing shipment post creation||\n|shipments > shipcarrier|order shipment carrier||\n|shipments > shipservice|order shipment service||\n|shipments > shiptracking|order shipment tracking number||\n|shipments > shipdate|date of order shipment||\n|shipments > shipcost|cost of order shipment||\n|shipments > shipuser|user who generated order shipment||\n|shipments > shipdetails|order shipment details JSON encoded including but not limited to fulfillment order item data in the case of short shipping||\n|shipments > shipdetails > items|order shipment package line item sku and quantity details, supported via API parameters `shipitems` or `shipsku` with `shipquantity`. Example `{\"shipments\":[{\"shiptracking\":\"123123123123\",\"shipdate\":\"NOW\",\"shipitems\":[{\"sku\":\"U8800ZZZ\",\"quantity\":1,\"fulfilled\":null}]}]}`. Optionally, you may use `shipskufield` and `shipskuvalue` to internally map `shipsku` to an `order.item.sku` via matching where `order.item.itemdetails.product.{shipskufield} = shipskuvalue`.||\n|refunds|order refunds object with one or more refunds||\n|refunds > refundid|order refund id, required for updating an order refund||\n|refunds > refunddate|date of order refund||\n|refunds > refunddetails|order refund details JSON encoded||\n|refunds > refunddetails > items|order refund line item sku and quantity details, supported via API parameters `refunditems` or `refundsku` with `refundquantity`.||",
        "operationId": "combineOrders",
        "summary": "Combine orders"
      }
    },
    "/v3/orders/split": {
      "post": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `splitOrder`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Split order — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "results": {
                      "failed": [
                        {
                          "message": "Not enough of item to split"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "results": {
                      "properties": {
                        "failed": {
                          "items": {
                            "properties": {
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "results": {
                        "failed": [
                          {
                            "message": "Not enough of item to split"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Orders Requests"
        ],
        "description": "|Field|Description|Required|\n|:--------------|----------|--------|\n|oid|database ID, integer Must be supplied as identifier if “order” is not supplied as the identifier.|Yes for combine and split orders|\n|order|concatenation of “channel” and “ordernumber” which may be used as an identifier.||\n|ordernumber|order number, 100 character limit|Yes for create order|\n|channel|channel where the order was originated, 50 character limit||\n|instance|for orders imported via SureDone, the integration instance of the channel||\n|details|channel specific order details encoded as JSON such as item fees and delivery estimates||\n|date|date of order, converted to timezone configured in user’s SureDone settings||\n|dateutc|date or order in UTC||\n|dateupdated|last modified date of order, converted to timezone configured in SureDone account||\n|oidconsolidate|oid of archived or parent order in split and combined orders respectively||\n|gift|whether order was marked as a gift, boolean||\n|comments|order comments||\n|internalnotes|array of internal notes indexed by date of each note and encoded as JSON, sending in “internalnotesoverwrite” with a non-false value will overwrite all contents of this field||\n|status|order status with value one of “INCOMPLETE”, “READY”, “PENDING”, “ORDERED”, “DROPSHIPPED”, “COMPLETE” or “ARCHIVED”||\n|transactionid|transaction ID of the order, may correlate to a system identifier required by the channel for fulfilling the order||\n|correlationid|correlation ID for the payment of the order||\n|payment|payment method of the order||\n|paymentdate|date of payment to mark paymentstatus as COMPLETE||\n|paymentstatus|payment status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”||\n|shippingcarrier|buyer requested shipping carrier||\n|shippingservice|buyer requested shipping service||\n|shippingstatus|shipping status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”, sending “COMPLETE” will mark order as “shipped” on external channels||\n|total|order total including all taxes, shipping, handling and discounts|Yes for create order|\n|itemtotal|total of all order items||\n|shippingtotal|total of all shipping costs charged||\n|handlingtotal|total of all handling charged||\n|taxtotal|total of all taxes charged||\n|discounttotal|total of all discounts applied to order||\n|discountcode|code used to generate discount, 50 character limit||\n|currency|currency code of the order, 10 character limit||\n|account|account id of suredone storefront user||\n|archived|whether order has been “deleted”, boolean||\n|meta|miscellaneous order data JSON encoded including but not limited to raw payloads from channel imports and raw validated addresses||\n|email|email of customer||\n|billing|address data object for billing contact||\n|billing > country|country of billing contact||\n|billing > firstname|first name of billing contact||\n|billing > middlename|middle name of billing contact||\n|billing > lastname|last name of billing contact||\n|billing > company|company of billing contact||\n|billing > streetl|address street of billing contact||\n|billing > street2|address street 2 of billing contact||\n|billing > street3|address street 3 of billing contact||\n|billing > city|city of billing contact||\n|billing > stateprovince|state or province of billing contact||\n|billing > postalcode|postal code of billing contact||\n|billing > phone|phone number of billing contact||\n|billing > phone2|second phone number of billing contact||\n|shipping|address data object for shipping contact||\n|shipping > country|country of shipping contact||\n|shipping > firstname|first name of shipping contact||\n|shipping > middlename|middle name of shipping contact||\n|shipping > lastname|last name of shipping contact||\n|shipping > company|company of shipping contact||\n|shipping > streetl|address street of shipping contact||\n|shipping > street2|address street 2 of shipping contact||\n|shipping > street3|address street 3 of shipping contact||\n|shipping > city|city of shipping contact||\n|shipping > stateprovince|state or province of shipping contact||\n|shipping > postalcode|postal code of shipping contact||\n|shipping > phone|phone number of shipping contact||\n|shipping > phone2|second phone number of shipping contact||\n|items|order items object with one or more items, for products that exist in SureDone the following fields may be populated if they are missing during order creation|Yes for create order|\n|items > itemid|order item id, required for updating order item data||\n|items > sku|order item SKU, for products matching in SureDone this will be the “guid”, 100 character limit||\n|items > title|order item title, 500 character limit||\n|items > price|order item price||\n|items > quantity|order item quantity purchased||\n|items > media|order item image URL||\n|items > weight|order item weight||\n|items > dimweight|order item dim weight||\n|items > boxlength|order item box length||\n|items > boxwidth|order item box width||\n|items > boxheight|order item box height||\n|items > source|order item stock (warehouse) source as determined by product stock levels for products that exist in SureDone||\n|items > itemdetails|order item details JSON encoded including but not limited to full product payload for products existing in SureDone at the time of order creation||\n|items > itemstatus|order item status||\n|items > vendor|order item vendor||\n|items > purchaseorderid|order item purchase order for vendors and/or erp||\n|items > “customfields”|order item custom fields created||\n|shipments|order shipments object with one or more shipments||\n|shipments > shipid|order shipment id, required when updating an existing shipment post creation||\n|shipments > shipcarrier|order shipment carrier||\n|shipments > shipservice|order shipment service||\n|shipments > shiptracking|order shipment tracking number||\n|shipments > shipdate|date of order shipment||\n|shipments > shipcost|cost of order shipment||\n|shipments > shipuser|user who generated order shipment||\n|shipments > shipdetails|order shipment details JSON encoded including but not limited to fulfillment order item data in the case of short shipping||\n|shipments > shipdetails > items|order shipment package line item sku and quantity details, supported via API parameters `shipitems` or `shipsku` with `shipquantity`. Example `{\"shipments\":[{\"shiptracking\":\"123123123123\",\"shipdate\":\"NOW\",\"shipitems\":[{\"sku\":\"U8800ZZZ\",\"quantity\":1,\"fulfilled\":null}]}]}`. Optionally, you may use `shipskufield` and `shipskuvalue` to internally map `shipsku` to an `order.item.sku` via matching where `order.item.itemdetails.product.{shipskufield} = shipskuvalue`.||\n|refunds|order refunds object with one or more refunds||\n|refunds > refundid|order refund id, required for updating an order refund||\n|refunds > refunddate|date of order refund||\n|refunds > refunddetails|order refund details JSON encoded||\n|refunds > refunddetails > items|order refund line item sku and quantity details, supported via API parameters `refunditems` or `refundsku` with `refundquantity`.||",
        "operationId": "splitOrder",
        "summary": "Split order"
      }
    },
    "/v3/orders/{oid}": {
      "patch": {
        "parameters": [
          {
            "description": "Order identifier. Accepts either the numeric `oid` (database ID, e.g. `43`) or the customer-facing `order` string formed by concatenating the channel slug and the channel's order number (e.g. `mycustomstoreSD13097689151690`). The server selects between the two by `is_numeric()`. See `src/Orders/Api.php::patch`.",
            "in": "path",
            "name": "oid",
            "required": true,
            "schema": {
              "type": "string"
            },
            "examples": {
              "numericOid": {
                "summary": "Numeric database OID",
                "value": "43"
              },
              "orderString": {
                "summary": "Channel order string (channel + ordernumber)",
                "value": "mycustomstoreSD13097689151690"
              }
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `updateOrderByOid`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Update order by oid — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "results": {
                      "successful": [
                        {
                          "code": 2,
                          "message": "Order updated successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "results": {
                        "successful": [
                          {
                            "code": 2,
                            "message": "Order updated successfully!"
                          }
                        ]
                      }
                    }
                  },
                  "responseByOrder": {
                    "value": {
                      "results": {
                        "successful": [
                          {
                            "code": 2,
                            "message": "Order updated successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Orders Requests"
        ],
        "description": "Update an existing order by identifier. The `{oid}` path segment accepts either the numeric database OID or the `order` string (channel + channel ordernumber). The same field schema applies for both identifier forms.\n\n+ Description: Use this update to modify orders including to _mark orders shipped_ on marketplaces. To mark orders shipped on channels, ensure the order has a valid shipment with `shiptracking shipcarrier` and `shipdate` - and set `shippingstatus COMPLETE`\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|oid|database ID, integer Must be supplied as identifier if “order” is not supplied as the identifier.|Yes for combine and split orders|\n|order|concatenation of “channel” and “ordernumber” which may be used as an identifier.||\n|ordernumber|order number, 100 character limit|Yes for create order|\n|channel|channel where the order was originated, 50 character limit||\n|instance|for orders imported via SureDone, the integration instance of the channel||\n|details|channel specific order details encoded as JSON such as item fees and delivery estimates||\n|date|date of order, converted to timezone configured in user’s SureDone settings||\n|dateutc|date or order in UTC||\n|dateupdated|last modified date of order, converted to timezone configured in SureDone account||\n|oidconsolidate|oid of archived or parent order in split and combined orders respectively||\n|gift|whether order was marked as a gift, boolean||\n|comments|order comments||\n|internalnotes|array of internal notes indexed by date of each note and encoded as JSON, sending in “internalnotesoverwrite” with a non-false value will overwrite all contents of this field||\n|status|order status with value one of “INCOMPLETE”, “READY”, “PENDING”, “ORDERED”, “DROPSHIPPED”, “COMPLETE” or “ARCHIVED”||\n|transactionid|transaction ID of the order, may correlate to a system identifier required by the channel for fulfilling the order||\n|correlationid|correlation ID for the payment of the order||\n|payment|payment method of the order||\n|paymentdate|date of payment to mark paymentstatus as COMPLETE||\n|paymentstatus|payment status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”||\n|shippingcarrier|buyer requested shipping carrier||\n|shippingservice|buyer requested shipping service||\n|shippingstatus|shipping status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”, sending “COMPLETE” will mark order as “shipped” on external channels||\n|total|order total including all taxes, shipping, handling and discounts|Yes for create order|\n|itemtotal|total of all order items||\n|shippingtotal|total of all shipping costs charged||\n|handlingtotal|total of all handling charged||\n|taxtotal|total of all taxes charged||\n|discounttotal|total of all discounts applied to order||\n|discountcode|code used to generate discount, 50 character limit||\n|currency|currency code of the order, 10 character limit||\n|account|account id of suredone storefront user||\n|archived|whether order has been “deleted”, boolean||\n|meta|miscellaneous order data JSON encoded including but not limited to raw payloads from channel imports and raw validated addresses||\n|email|email of customer||\n|billing|address data object for billing contact||\n|billing > country|country of billing contact||\n|billing > firstname|first name of billing contact||\n|billing > middlename|middle name of billing contact||\n|billing > lastname|last name of billing contact||\n|billing > company|company of billing contact||\n|billing > streetl|address street of billing contact||\n|billing > street2|address street 2 of billing contact||\n|billing > street3|address street 3 of billing contact||\n|billing > city|city of billing contact||\n|billing > stateprovince|state or province of billing contact||\n|billing > postalcode|postal code of billing contact||\n|billing > phone|phone number of billing contact||\n|billing > phone2|second phone number of billing contact||\n|shipping|address data object for shipping contact||\n|shipping > country|country of shipping contact||\n|shipping > firstname|first name of shipping contact||\n|shipping > middlename|middle name of shipping contact||\n|shipping > lastname|last name of shipping contact||\n|shipping > company|company of shipping contact||\n|shipping > streetl|address street of shipping contact||\n|shipping > street2|address street 2 of shipping contact||\n|shipping > street3|address street 3 of shipping contact||\n|shipping > city|city of shipping contact||\n|shipping > stateprovince|state or province of shipping contact||\n|shipping > postalcode|postal code of shipping contact||\n|shipping > phone|phone number of shipping contact||\n|shipping > phone2|second phone number of shipping contact||\n|items|order items object with one or more items, for products that exist in SureDone the following fields may be populated if they are missing during order creation|Yes for create order|\n|items > itemid|order item id, required for updating order item data||\n|items > sku|order item SKU, for products matching in SureDone this will be the “guid”, 100 character limit||\n|items > title|order item title, 500 character limit||\n|items > price|order item price||\n|items > quantity|order item quantity purchased||\n|items > media|order item image URL||\n|items > weight|order item weight||\n|items > dimweight|order item dim weight||\n|items > boxlength|order item box length||\n|items > boxwidth|order item box width||\n|items > boxheight|order item box height||\n|items > source|order item stock (warehouse) source as determined by product stock levels for products that exist in SureDone||\n|items > itemdetails|order item details JSON encoded including but not limited to full product payload for products existing in SureDone at the time of order creation||\n|items > itemstatus|order item status||\n|items > vendor|order item vendor||\n|items > purchaseorderid|order item purchase order for vendors and/or erp||\n|items > “customfields”|order item custom fields created||\n|shipments|order shipments object with one or more shipments||\n|shipments > shipid|order shipment id, required when updating an existing shipment post creation||\n|shipments > shipcarrier|order shipment carrier||\n|shipments > shipservice|order shipment service||\n|shipments > shiptracking|order shipment tracking number||\n|shipments > shipdate|date of order shipment||\n|shipments > shipcost|cost of order shipment||\n|shipments > shipuser|user who generated order shipment||\n|shipments > shipdetails|order shipment details JSON encoded including but not limited to fulfillment order item data in the case of short shipping||\n|shipments > shipdetails > items|order shipment package line item sku and quantity details, supported via API parameters `shipitems` or `shipsku` with `shipquantity`. Example `{\"shipments\":[{\"shiptracking\":\"123123123123\",\"shipdate\":\"NOW\",\"shipitems\":[{\"sku\":\"U8800ZZZ\",\"quantity\":1,\"fulfilled\":null}]}]}`. Optionally, you may use `shipskufield` and `shipskuvalue` to internally map `shipsku` to an `order.item.sku` via matching where `order.item.itemdetails.product.{shipskufield} = shipskuvalue`.||\n|refunds|order refunds object with one or more refunds||\n|refunds > refundid|order refund id, required for updating an order refund||\n|refunds > refunddate|date of order refund||\n|refunds > refunddetails|order refund details JSON encoded||\n|refunds > refunddetails > items|order refund line item sku and quantity details, supported via API parameters `refunditems` or `refundsku` with `refundquantity`.||",
        "operationId": "updateOrderByOid",
        "summary": "Update order by oid"
      },
      "delete": {
        "parameters": [
          {
            "description": "Order identifier — numeric database OID or the channel order string (channel + ordernumber).",
            "in": "path",
            "name": "oid",
            "required": true,
            "example": "357",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `deleteOrders`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Delete orders — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "results": {
                      "successful": [
                        {
                          "code": 7,
                          "message": "Order archived successfully!"
                        }
                      ]
                    }
                  },
                  "properties": {
                    "results": {
                      "properties": {
                        "successful": {
                          "items": {
                            "properties": {
                              "code": {
                                "type": "number"
                              },
                              "message": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "results": {
                        "successful": [
                          {
                            "code": 7,
                            "message": "Order archived successfully!"
                          }
                        ]
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Orders Requests"
        ],
        "description": "|Field|Description|Required|\n|:--------------|----------|--------|\n|oid|database ID, integer Must be supplied as identifier if “order” is not supplied as the identifier.|Yes for combine and split orders|\n|order|concatenation of “channel” and “ordernumber” which may be used as an identifier.||\n|ordernumber|order number, 100 character limit|Yes for create order|\n|channel|channel where the order was originated, 50 character limit||\n|instance|for orders imported via SureDone, the integration instance of the channel||\n|details|channel specific order details encoded as JSON such as item fees and delivery estimates||\n|date|date of order, converted to timezone configured in user’s SureDone settings||\n|dateutc|date or order in UTC||\n|dateupdated|last modified date of order, converted to timezone configured in SureDone account||\n|oidconsolidate|oid of archived or parent order in split and combined orders respectively||\n|gift|whether order was marked as a gift, boolean||\n|comments|order comments||\n|internalnotes|array of internal notes indexed by date of each note and encoded as JSON, sending in “internalnotesoverwrite” with a non-false value will overwrite all contents of this field||\n|status|order status with value one of “INCOMPLETE”, “READY”, “PENDING”, “ORDERED”, “DROPSHIPPED”, “COMPLETE” or “ARCHIVED”||\n|transactionid|transaction ID of the order, may correlate to a system identifier required by the channel for fulfilling the order||\n|correlationid|correlation ID for the payment of the order||\n|payment|payment method of the order||\n|paymentdate|date of payment to mark paymentstatus as COMPLETE||\n|paymentstatus|payment status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”||\n|shippingcarrier|buyer requested shipping carrier||\n|shippingservice|buyer requested shipping service||\n|shippingstatus|shipping status with value one of “INCOMPLETE”, “PENDING” or “COMPLETE”, sending “COMPLETE” will mark order as “shipped” on external channels||\n|total|order total including all taxes, shipping, handling and discounts|Yes for create order|\n|itemtotal|total of all order items||\n|shippingtotal|total of all shipping costs charged||\n|handlingtotal|total of all handling charged||\n|taxtotal|total of all taxes charged||\n|discounttotal|total of all discounts applied to order||\n|discountcode|code used to generate discount, 50 character limit||\n|currency|currency code of the order, 10 character limit||\n|account|account id of suredone storefront user||\n|archived|whether order has been “deleted”, boolean||\n|meta|miscellaneous order data JSON encoded including but not limited to raw payloads from channel imports and raw validated addresses||\n|email|email of customer||\n|billing|address data object for billing contact||\n|billing > country|country of billing contact||\n|billing > firstname|first name of billing contact||\n|billing > middlename|middle name of billing contact||\n|billing > lastname|last name of billing contact||\n|billing > company|company of billing contact||\n|billing > streetl|address street of billing contact||\n|billing > street2|address street 2 of billing contact||\n|billing > street3|address street 3 of billing contact||\n|billing > city|city of billing contact||\n|billing > stateprovince|state or province of billing contact||\n|billing > postalcode|postal code of billing contact||\n|billing > phone|phone number of billing contact||\n|billing > phone2|second phone number of billing contact||\n|shipping|address data object for shipping contact||\n|shipping > country|country of shipping contact||\n|shipping > firstname|first name of shipping contact||\n|shipping > middlename|middle name of shipping contact||\n|shipping > lastname|last name of shipping contact||\n|shipping > company|company of shipping contact||\n|shipping > streetl|address street of shipping contact||\n|shipping > street2|address street 2 of shipping contact||\n|shipping > street3|address street 3 of shipping contact||\n|shipping > city|city of shipping contact||\n|shipping > stateprovince|state or province of shipping contact||\n|shipping > postalcode|postal code of shipping contact||\n|shipping > phone|phone number of shipping contact||\n|shipping > phone2|second phone number of shipping contact||\n|items|order items object with one or more items, for products that exist in SureDone the following fields may be populated if they are missing during order creation|Yes for create order|\n|items > itemid|order item id, required for updating order item data||\n|items > sku|order item SKU, for products matching in SureDone this will be the “guid”, 100 character limit||\n|items > title|order item title, 500 character limit||\n|items > price|order item price||\n|items > quantity|order item quantity purchased||\n|items > media|order item image URL||\n|items > weight|order item weight||\n|items > dimweight|order item dim weight||\n|items > boxlength|order item box length||\n|items > boxwidth|order item box width||\n|items > boxheight|order item box height||\n|items > source|order item stock (warehouse) source as determined by product stock levels for products that exist in SureDone||\n|items > itemdetails|order item details JSON encoded including but not limited to full product payload for products existing in SureDone at the time of order creation||\n|items > itemstatus|order item status||\n|items > vendor|order item vendor||\n|items > purchaseorderid|order item purchase order for vendors and/or erp||\n|items > “customfields”|order item custom fields created||\n|shipments|order shipments object with one or more shipments||\n|shipments > shipid|order shipment id, required when updating an existing shipment post creation||\n|shipments > shipcarrier|order shipment carrier||\n|shipments > shipservice|order shipment service||\n|shipments > shiptracking|order shipment tracking number||\n|shipments > shipdate|date of order shipment||\n|shipments > shipcost|cost of order shipment||\n|shipments > shipuser|user who generated order shipment||\n|shipments > shipdetails|order shipment details JSON encoded including but not limited to fulfillment order item data in the case of short shipping||\n|shipments > shipdetails > items|order shipment package line item sku and quantity details, supported via API parameters `shipitems` or `shipsku` with `shipquantity`. Example `{\"shipments\":[{\"shiptracking\":\"123123123123\",\"shipdate\":\"NOW\",\"shipitems\":[{\"sku\":\"U8800ZZZ\",\"quantity\":1,\"fulfilled\":null}]}]}`. Optionally, you may use `shipskufield` and `shipskuvalue` to internally map `shipsku` to an `order.item.sku` via matching where `order.item.itemdetails.product.{shipskufield} = shipskuvalue`.||\n|refunds|order refunds object with one or more refunds||\n|refunds > refundid|order refund id, required for updating an order refund||\n|refunds > refunddate|date of order refund||\n|refunds > refunddetails|order refund details JSON encoded||\n|refunds > refunddetails > items|order refund line item sku and quantity details, supported via API parameters `refunditems` or `refundsku` with `refundquantity`.||",
        "operationId": "deleteOrders",
        "summary": "Delete orders"
      },
      "get": {
        "parameters": [
          {
            "description": "Order identifier — numeric database OID or the channel order string (channel + ordernumber).",
            "in": "path",
            "name": "oid",
            "required": true,
            "example": "43",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `getOrderByOid`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Get order by oid — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "count": "1",
                    "orders": [
                      {
                        "account": null,
                        "archived": "0",
                        "billing": {
                          "city": "New York",
                          "company": "",
                          "country": "US",
                          "firstname": "Test",
                          "lastname": "User",
                          "middlename": "",
                          "phone": "877-773-6755",
                          "phone2": "",
                          "postalcode": "10010",
                          "stateprovince": "NY",
                          "street1": "115 E 23rd St",
                          "street2": "FL 3",
                          "street3": ""
                        },
                        "channel": "custom",
                        "comments": "Please ship all packages in one box.",
                        "correlationid": "",
                        "currency": "USD",
                        "date": "2018-06-27 13:38:25",
                        "dateupdated": "2018-06-27 13:38:25",
                        "dateupdatedutc": "2018-06-27 13:38:25",
                        "dateutc": "2018-06-27 13:38:25",
                        "details": {
                          "currency": [
                            "USD"
                          ],
                          "deliver-by-earliest": [
                            "2018-07-03 07:00:00"
                          ],
                          "deliver-by-latest": [
                            "2018-07-07 06:59:59"
                          ],
                          "handling": [
                            0
                          ],
                          "itemfee": [
                            "1.58"
                          ],
                          "ship-by-earliest": [
                            "2018-06-28 07:00:00"
                          ],
                          "ship-by-latest": [
                            "2018-06-29 06:59:59"
                          ],
                          "shipping": [
                            0
                          ],
                          "shipservice": [
                            "Standard"
                          ],
                          "shiptax": [
                            0
                          ],
                          "tax": [
                            0
                          ]
                        },
                        "discountcode": "",
                        "discounttotal": "0.00",
                        "email": "demo@suredone.com",
                        "gift": "0",
                        "handlingtotal": "0.00",
                        "instance": "0",
                        "internalnotes": {
                          "2018-08-11T16:22:49": "This is a great customer"
                        },
                        "ip": "",
                        "items": [
                          {
                            "boxheight": "0.50",
                            "boxlength": "1.00",
                            "boxwidth": "2.50",
                            "dimweight": "1.56",
                            "itemdetails": {
                              "order-item-id": "30090115962746",
                              "product": {
                                "tags": "",
                                "active": "0",
                                "actualcost": "219.99",
                                "amzn2asin": "",
                                "amzn2category": "0",
                                "amzn2categorypath": "",
                                "amzn2currency": "",
                                "amzn2fba": "",
                                "amzn2itemtype": "0",
                                "amzn2options": null,
                                "amzn2parentbrand": "",
                                "amzn2parentbullets": "",
                                "amzn2parentdescription": "",
                                "amzn2parentimage": "",
                                "amzn2parenttitle": "",
                                "amzn2price": "0.00",
                                "amzn2search": "",
                                "amzn2skip": "",
                                "amzn2sku": "",
                                "amzn2status": "",
                                "amzn2title": "",
                                "amzn3asin": "",
                                "amzn3category": "0",
                                "amzn3categorypath": "",
                                "amzn3currency": "",
                                "amzn3fba": "",
                                "amzn3itemtype": "0",
                                "amzn3options": null,
                                "amzn3parentbrand": "",
                                "amzn3parentbullets": "",
                                "amzn3parentdescription": "",
                                "amzn3parentimage": "",
                                "amzn3parenttitle": "",
                                "amzn3price": "0.00",
                                "amzn3search": "",
                                "amzn3skip": "",
                                "amzn3sku": "",
                                "amzn3status": "",
                                "amzn3title": "",
                                "amznasin": "",
                                "amzncategory": "0",
                                "amzncategorypath": "",
                                "amzncurrency": "",
                                "amznfba": "{\"status\":\"switch_off\",\"fulfillment_center\":\"\"}",
                                "amznitemtype": "0",
                                "amznoptions": {
                                  "categorypath": "",
                                  "parentbrand": "",
                                  "parentbullets": "",
                                  "parentdescription": "",
                                  "parentimage": "",
                                  "parenttitle": "",
                                  "skip": "alwaysSend"
                                },
                                "amznparentbrand": "",
                                "amznparentbullets": "",
                                "amznparentdescription": "",
                                "amznparentimage": "",
                                "amznparenttitle": "",
                                "amznprice": "0.00",
                                "amznsearch": "",
                                "amznskip": "alwaysSend",
                                "amznsku": "",
                                "amznstatus": "",
                                "amzntitle": "",
                                "asset": "",
                                "atest3": "",
                                "bandsize": "",
                                "bccf1": "",
                                "bccustom1": "",
                                "bccustom10": "",
                                "bccustom11": "",
                                "bccustom12": "",
                                "bccustom13": "",
                                "bccustom14": "",
                                "bccustom15": "",
                                "bccustom16": "",
                                "bccustom17": "",
                                "bccustom2": "",
                                "bccustom3": "",
                                "bccustom4": "",
                                "bccustom5": "",
                                "bccustom6": "",
                                "bccustom7": "",
                                "bccustom8": "",
                                "bccustom9": "",
                                "bcf1": "",
                                "bcnewcf1": "",
                                "bcnewcf2": "",
                                "bcnewcf3": "",
                                "bcnewcf4": "",
                                "bcnewcf5": "",
                                "bcnewcf6": "",
                                "bcnewcf7": "",
                                "bcnewcfa": "",
                                "bcnewcfb": "",
                                "bcnewcfc": "",
                                "bcnewcfd": "",
                                "bcnewcfe": "",
                                "bcnewcff": "",
                                "bcnewcfg": "",
                                "bcnewcfh": "",
                                "bcnewcfi": "",
                                "bctest1": "",
                                "bctest2": "",
                                "bctest3": "",
                                "bctest4": "",
                                "bigcommerce2availability": "",
                                "bigcommerce2availabilitydescription": "",
                                "bigcommerce2avalaraproducttaxcode": "",
                                "bigcommerce2binpickingnumber": "",
                                "bigcommerce2brandid": "",
                                "bigcommerce2calculatedprice": "",
                                "bigcommerce2categories": "",
                                "bigcommerce2configurablefields": "",
                                "bigcommerce2costprice": "",
                                "bigcommerce2customfields": "",
                                "bigcommerce2datecreated": "",
                                "bigcommerce2datelastimported": "",
                                "bigcommerce2description": "",
                                "bigcommerce2discountrules": "",
                                "bigcommerce2downloads": "",
                                "bigcommerce2eventdateend": "",
                                "bigcommerce2eventdatefieldname": "",
                                "bigcommerce2eventdatestart": "",
                                "bigcommerce2eventdatetype": "",
                                "bigcommerce2fixedcostshippingprice": "",
                                "bigcommerce2images": "",
                                "bigcommerce2inventorywarninglevel": "",
                                "bigcommerce2isconditionshown": "",
                                "bigcommerce2isfeatured": "",
                                "bigcommerce2isfreeshipping": "",
                                "bigcommerce2isopengraphthumbnail": "",
                                "bigcommerce2ispreorderonly": "",
                                "bigcommerce2ispricehidden": "",
                                "bigcommerce2keywordfilter": "",
                                "bigcommerce2layoutfile": "",
                                "bigcommerce2listingid": "",
                                "bigcommerce2manageproductrules": "",
                                "bigcommerce2media": "",
                                "bigcommerce2metadescription": "",
                                "bigcommerce2metakeywords": "",
                                "bigcommerce2myobassetaccount": "",
                                "bigcommerce2myobexpenseaccount": "",
                                "bigcommerce2myobincomeaccount": "",
                                "bigcommerce2name": "",
                                "bigcommerce2opengraphdescription": "",
                                "bigcommerce2opengraphtitle": "",
                                "bigcommerce2opengraphtype": "",
                                "bigcommerce2options": null,
                                "bigcommerce2optionsetdisplay": "",
                                "bigcommerce2optionsetid": "",
                                "bigcommerce2orderquantitymaximum": "",
                                "bigcommerce2orderquantityminimum": "",
                                "bigcommerce2pagetitle": "",
                                "bigcommerce2path": "",
                                "bigcommerce2peachtreeglaccount": "",
                                "bigcommerce2preordermessage": "",
                                "bigcommerce2preorderreleasedate": "",
                                "bigcommerce2price": "",
                                "bigcommerce2pricehiddenlabel": "",
                                "bigcommerce2productrule": "",
                                "bigcommerce2ratingcount": "",
                                "bigcommerce2ratingtotal": "",
                                "bigcommerce2relatedproducts": "",
                                "bigcommerce2retailprice": "",
                                "bigcommerce2saleprice": "",
                                "bigcommerce2searchkeywords": "",
                                "bigcommerce2skip": "",
                                "bigcommerce2sku": "",
                                "bigcommerce2skuid": "",
                                "bigcommerce2taxclassid": "",
                                "bigcommerce2totalsold": "",
                                "bigcommerce2type": "",
                                "bigcommerce2url": "",
                                "bigcommerce2videos": "",
                                "bigcommerce2viewcount": "",
                                "bigcommerce2warranty": "",
                                "bigcommerceavailability": "",
                                "bigcommerceavailabilitydescription": "",
                                "bigcommerceavalaraproducttaxcode": "",
                                "bigcommercebinpickingnumber": "",
                                "bigcommercebrandid": "",
                                "bigcommercecalculatedprice": "",
                                "bigcommercecategories": "",
                                "bigcommerceconfigurablefields": "",
                                "bigcommercecostprice": "",
                                "bigcommercecustomfields": "[]",
                                "bigcommercedatecreated": "",
                                "bigcommercedatelastimported": "",
                                "bigcommercedescription": "",
                                "bigcommercediscountrules": "",
                                "bigcommercedownloads": "",
                                "bigcommerceeventdateend": "",
                                "bigcommerceeventdatefieldname": "",
                                "bigcommerceeventdatestart": "",
                                "bigcommerceeventdatetype": "",
                                "bigcommercefixedcostshippingprice": "",
                                "bigcommerceimages": "",
                                "bigcommerceinventorywarninglevel": "",
                                "bigcommerceisconditionshown": "",
                                "bigcommerceisfeatured": "",
                                "bigcommerceisfreeshipping": "",
                                "bigcommerceisopengraphthumbnail": "",
                                "bigcommerceispreorderonly": "",
                                "bigcommerceispricehidden": "",
                                "bigcommercekeywordfilter": "",
                                "bigcommercelayoutfile": "",
                                "bigcommercelistingid": "",
                                "bigcommercemanageproductrules": "",
                                "bigcommercemedia": "",
                                "bigcommercemetadescription": "",
                                "bigcommercemetakeywords": "",
                                "bigcommercemyobassetaccount": "",
                                "bigcommercemyobexpenseaccount": "",
                                "bigcommercemyobincomeaccount": "",
                                "bigcommercename": "",
                                "bigcommerceopengraphdescription": "",
                                "bigcommerceopengraphtitle": "",
                                "bigcommerceopengraphtype": "",
                                "bigcommerceoptions": {
                                  "availability": "",
                                  "availability_description": "",
                                  "avalara_product_tax_code": "",
                                  "bin_picking_number": "",
                                  "brand_id": "",
                                  "calculated_price": "",
                                  "categories": "",
                                  "configurable_fields": "",
                                  "cost_price": "",
                                  "custom_fields": [],
                                  "date_created": "",
                                  "date_last_imported": "",
                                  "description": "",
                                  "discount_rules": "",
                                  "downloads": "",
                                  "event_date_end": "",
                                  "event_date_field_name": "",
                                  "event_date_start": "",
                                  "event_date_type": "",
                                  "fixed_cost_shipping_price": "",
                                  "images": "",
                                  "inventory_warning_level": "",
                                  "is_condition_shown": "",
                                  "is_featured": "",
                                  "is_free_shipping": "",
                                  "is_open_graph_thumbnail": "",
                                  "is_preorder_only": "",
                                  "is_price_hidden": "",
                                  "keyword_filter": "",
                                  "layout_file": "",
                                  "manage_product_rules": "",
                                  "media": "",
                                  "meta_description": "",
                                  "meta_keywords": "",
                                  "myob_asset_account": "",
                                  "myob_expense_account": "",
                                  "myob_income_account": "",
                                  "name": "",
                                  "open_graph_description": "",
                                  "open_graph_title": "",
                                  "open_graph_type": "",
                                  "option_set_display": "",
                                  "option_set_id": "",
                                  "order_quantity_maximum": "",
                                  "order_quantity_minimum": "",
                                  "page_title": "",
                                  "path": "https://store-988ysg.mybigcommerce.com",
                                  "peachtree_gl_account": "",
                                  "preorder_message": "",
                                  "preorder_release_date": "",
                                  "price": "",
                                  "price_hidden_label": "",
                                  "product_rule": "",
                                  "rating_count": "",
                                  "rating_total": "",
                                  "related_products": "",
                                  "retail_price": "",
                                  "sale_price": "",
                                  "search_keywords": "",
                                  "skip": "",
                                  "sku_id": "",
                                  "tax_class_id": "",
                                  "total_sold": "",
                                  "type": "",
                                  "url": "/products/",
                                  "videos": "",
                                  "view_count": "",
                                  "warranty": ""
                                },
                                "bigcommerceoptionsetdisplay": "",
                                "bigcommerceoptionsetid": "",
                                "bigcommerceorderquantitymaximum": "",
                                "bigcommerceorderquantityminimum": "",
                                "bigcommercepagetitle": "",
                                "bigcommercepath": "https://store-988ysg.mybigcommerce.com",
                                "bigcommercepeachtreeglaccount": "",
                                "bigcommercepreordermessage": "",
                                "bigcommercepreorderreleasedate": "",
                                "bigcommerceprice": "",
                                "bigcommercepricehiddenlabel": "",
                                "bigcommerceproductrule": "",
                                "bigcommerceratingcount": "",
                                "bigcommerceratingtotal": "",
                                "bigcommercerelatedproducts": "",
                                "bigcommerceretailprice": "",
                                "bigcommercesaleprice": "",
                                "bigcommercesearchkeywords": "",
                                "bigcommerceskip": "",
                                "bigcommercesku": "U8800",
                                "bigcommerceskuid": "",
                                "bigcommercetaxclassid": "",
                                "bigcommercetotalsold": "",
                                "bigcommercetype": "",
                                "bigcommerceurl": "/products/",
                                "bigcommercevideos": "",
                                "bigcommerceviewcount": "",
                                "bigcommercewarranty": "",
                                "boing": "",
                                "bottomssizemens": "",
                                "bottomssizewomens": "",
                                "boxheight": "0.50",
                                "boxlength": "1.00",
                                "boxweight": "0.75",
                                "boxwidth": "2.50",
                                "brand": "AT&T",
                                "bulletpoint1": "",
                                "bulletpoint2": "",
                                "bulletpoint3": "",
                                "bulletpoint4": "",
                                "bulletpoint5": "",
                                "cache": "",
                                "category1": "mobile phones",
                                "category2": "android",
                                "category3": "",
                                "category4": "",
                                "category5": "",
                                "cf010301004": "",
                                "cf020301004": "",
                                "cf030301004": "",
                                "cf040301004": "",
                                "cf1": "",
                                "cf2": "",
                                "cf20160223001": "",
                                "cf20160223002": "",
                                "cf20160223004": "",
                                "cf20160223005": "",
                                "cf20160223007": "",
                                "cf20160223008": "",
                                "cf20160223009": "",
                                "cf20160223010": "",
                                "cf20160223020": "",
                                "cf20160223021": "",
                                "cf3": "",
                                "cf4": "",
                                "cf5": "",
                                "cf6": "",
                                "cf7": "",
                                "cf8": "",
                                "cf9": "",
                                "cfdn1": "",
                                "cfon1": "",
                                "click": "",
                                "clubtype": "",
                                "color": "Black",
                                "colors": "",
                                "condition": "New",
                                "content": "",
                                "cost": "0.00",
                                "countryregionofmanufactur": "",
                                "crazynewstyle": "",
                                "cupsize": "",
                                "customname": "",
                                "cut": "",
                                "date": "2013-07-29 15:06:20",
                                "datesold": "2018-07-18 01:11:40",
                                "dateupdated": "2018-08-05 00:38:50",
                                "deeey": "",
                                "department": "",
                                "description": "Android 2.2 operating system4G speedWi-FiMobile hotspot for up to 5users3.8\" WGA touch screen Requires a minimum data service starting at $15/month Early terminationfees will be prorated, starting at $325 minus $10 for each full month of service commitmentcompleted.",
                                "dimweight": "1.56",
                                "discountprice": "0.00",
                                "domain": "",
                                "dormanstock": "0",
                                "dressshirtsize": "",
                                "ean": "",
                                "ebay2adult": "",
                                "ebay2auctionsrelist": "",
                                "ebay2autopay": "",
                                "ebay2autorelistaction": "",
                                "ebay2autorelistcount": "",
                                "ebay2autorelistduration": "",
                                "ebay2autorelistmax": "",
                                "ebay2autorelistprice": "",
                                "ebay2bestofferautoacceptprice": 0,
                                "ebay2bestofferenabled": "",
                                "ebay2bestofferminimumprice": 0,
                                "ebay2buyitnow": 0,
                                "ebay2catid": "0",
                                "ebay2country": "",
                                "ebay2currency": "",
                                "ebay2description": "",
                                "ebay2dispatch": "",
                                "ebay2duration": "",
                                "ebay2endtime": "",
                                "ebay2fitmentcatalog": "",
                                "ebay2getitfast": "",
                                "ebay2holidayreturn": "",
                                "ebay2id": "0",
                                "ebay2internationalon": "",
                                "ebay2listing": "",
                                "ebay2location": "",
                                "ebay2minimumadvertisedprice": "",
                                "ebay2minimumadvertisedpriceexposure": "",
                                "ebay2options": {
                                  "autorelist": {
                                    "action": "",
                                    "count": "",
                                    "duration": "",
                                    "max": "",
                                    "price": ""
                                  },
                                  "bestoffer": {
                                    "autoacceptprice": 0,
                                    "minimumprice": 0
                                  },
                                  "buyitnow": 0,
                                  "country": "",
                                  "dispatch": null,
                                  "duration": "",
                                  "fitmentcatalog": "",
                                  "internationalon": "",
                                  "listing": "",
                                  "location": "",
                                  "minimumadvertisedprice": "",
                                  "minimumadvertisedpriceexposure": "",
                                  "paymentinstructions": "",
                                  "paymentmethods": [
                                    ""
                                  ],
                                  "paymentprofileid": "",
                                  "returnprofileid": "",
                                  "returns": {
                                    "description": ""
                                  },
                                  "salestaxpercent": 0,
                                  "scheduletime": "",
                                  "secondcategory": "",
                                  "shipping": {
                                    "calculated": {
                                      "handlingfee": 0,
                                      "internationalhandlingfee": 0,
                                      "postalcode": "",
                                      "shippingirregular": false,
                                      "shippingpackage": ""
                                    },
                                    "domestic": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      }
                                    },
                                    "excludes": [
                                      ""
                                    ],
                                    "international": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "5": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      }
                                    }
                                  },
                                  "shippingprofileid": "",
                                  "shiptolocations": [
                                    ""
                                  ],
                                  "siteid": "",
                                  "siteshipping": "",
                                  "skip": "alwaysSkip",
                                  "subtitle": "",
                                  "taxcategory": "",
                                  "template": ""
                                },
                                "ebay2paymentinstructions": "",
                                "ebay2paymentmethods": "",
                                "ebay2paymentprofileid": "",
                                "ebay2paypalemailaddress": "",
                                "ebay2prefiliteminfo": "",
                                "ebay2price": "0.00",
                                "ebay2private": "",
                                "ebay2promotionendtime": "",
                                "ebay2promotionstarttime": "",
                                "ebay2returnprofileid": "",
                                "ebay2returnsdescription": "",
                                "ebay2returnsrefund": "",
                                "ebay2returnsrestockingfeevalue": "",
                                "ebay2returnsreturnsaccepted": "",
                                "ebay2returnsreturnswithin": "",
                                "ebay2returnsshippingcostpaidby": "",
                                "ebay2salestaxpercent": 0,
                                "ebay2scheduletime": "",
                                "ebay2secondcategory": "",
                                "ebay2shippingcalculatedhandlingfee": 0,
                                "ebay2shippingcalculatedinternationalhandlingfee": 0,
                                "ebay2shippingcalculatedpostalcode": "",
                                "ebay2shippingcalculatedshippingirregular": false,
                                "ebay2shippingcalculatedshippingpackage": "",
                                "ebay2shippingdomestic1additionalcost": 0,
                                "ebay2shippingdomestic1cost": 0,
                                "ebay2shippingdomestic1cutofftime": "",
                                "ebay2shippingdomestic1expedited": "",
                                "ebay2shippingdomestic1freeshipping": "",
                                "ebay2shippingdomestic1handling": "",
                                "ebay2shippingdomestic1insurancecost": 0,
                                "ebay2shippingdomestic1localpickup": "",
                                "ebay2shippingdomestic1service": "",
                                "ebay2shippingdomestic1surcharge": 0,
                                "ebay2shippingdomestic1timemax": 0,
                                "ebay2shippingdomestic1timemin": 0,
                                "ebay2shippingdomestic2additionalcost": 0,
                                "ebay2shippingdomestic2cost": 0,
                                "ebay2shippingdomestic2cutofftime": "",
                                "ebay2shippingdomestic2expedited": "",
                                "ebay2shippingdomestic2freeshipping": "",
                                "ebay2shippingdomestic2handling": "",
                                "ebay2shippingdomestic2insurancecost": 0,
                                "ebay2shippingdomestic2localpickup": "",
                                "ebay2shippingdomestic2service": "",
                                "ebay2shippingdomestic2surcharge": 0,
                                "ebay2shippingdomestic2timemax": 0,
                                "ebay2shippingdomestic2timemin": 0,
                                "ebay2shippingdomestic3additionalcost": 0,
                                "ebay2shippingdomestic3cost": 0,
                                "ebay2shippingdomestic3cutofftime": "",
                                "ebay2shippingdomestic3expedited": "",
                                "ebay2shippingdomestic3freeshipping": "",
                                "ebay2shippingdomestic3handling": "",
                                "ebay2shippingdomestic3insurancecost": 0,
                                "ebay2shippingdomestic3localpickup": "",
                                "ebay2shippingdomestic3service": "",
                                "ebay2shippingdomestic3surcharge": 0,
                                "ebay2shippingdomestic3timemax": 0,
                                "ebay2shippingdomestic3timemin": 0,
                                "ebay2shippingdomestic4additionalcost": 0,
                                "ebay2shippingdomestic4cost": 0,
                                "ebay2shippingdomestic4cutofftime": "",
                                "ebay2shippingdomestic4expedited": "",
                                "ebay2shippingdomestic4freeshipping": "",
                                "ebay2shippingdomestic4handling": "",
                                "ebay2shippingdomestic4insurancecost": 0,
                                "ebay2shippingdomestic4localpickup": "",
                                "ebay2shippingdomestic4service": "",
                                "ebay2shippingdomestic4surcharge": 0,
                                "ebay2shippingdomestic4timemax": 0,
                                "ebay2shippingdomestic4timemin": 0,
                                "ebay2shippingexcludes": "",
                                "ebay2shippingglobal": "",
                                "ebay2shippingincludedintax": "",
                                "ebay2shippinginternational1additionalcost": 0,
                                "ebay2shippinginternational1cost": 0,
                                "ebay2shippinginternational1cutofftime": "",
                                "ebay2shippinginternational1handling": "",
                                "ebay2shippinginternational1insurancecost": 0,
                                "ebay2shippinginternational1location": "",
                                "ebay2shippinginternational1service": "",
                                "ebay2shippinginternational2additionalcost": 0,
                                "ebay2shippinginternational2cost": 0,
                                "ebay2shippinginternational2cutofftime": "",
                                "ebay2shippinginternational2handling": "",
                                "ebay2shippinginternational2insurancecost": 0,
                                "ebay2shippinginternational2location": "",
                                "ebay2shippinginternational2service": "",
                                "ebay2shippinginternational3additionalcost": 0,
                                "ebay2shippinginternational3cost": 0,
                                "ebay2shippinginternational3cutofftime": "",
                                "ebay2shippinginternational3handling": "",
                                "ebay2shippinginternational3insurancecost": 0,
                                "ebay2shippinginternational3location": "",
                                "ebay2shippinginternational3service": "",
                                "ebay2shippinginternational4additionalcost": 0,
                                "ebay2shippinginternational4cost": 0,
                                "ebay2shippinginternational4cutofftime": "",
                                "ebay2shippinginternational4handling": "",
                                "ebay2shippinginternational4insurancecost": 0,
                                "ebay2shippinginternational4location": "",
                                "ebay2shippinginternational4service": "",
                                "ebay2shippinginternational5additionalcost": 0,
                                "ebay2shippinginternational5cost": 0,
                                "ebay2shippinginternational5cutofftime": "",
                                "ebay2shippinginternational5handling": "",
                                "ebay2shippinginternational5insurancecost": 0,
                                "ebay2shippinginternational5location": "",
                                "ebay2shippinginternational5service": "",
                                "ebay2shippingprofileid": "",
                                "ebay2shippingratetabledom": "",
                                "ebay2shippingratetableintl": "",
                                "ebay2shippingtype": "",
                                "ebay2shiptolocations": "",
                                "ebay2siteid": "",
                                "ebay2siteshipping": "",
                                "ebay2skip": "alwaysSkip",
                                "ebay2sku": "",
                                "ebay2starttime": "",
                                "ebay2storeid": "0",
                                "ebay2storeid2": "0",
                                "ebay2subtitle": "",
                                "ebay2taxcategory": "",
                                "ebay2template": "",
                                "ebay2title": "",
                                "ebay2upcnot": "",
                                "ebay3adult": "",
                                "ebay3auctionsrelist": "",
                                "ebay3autopay": "",
                                "ebay3autorelistaction": "",
                                "ebay3autorelistcount": "",
                                "ebay3autorelistduration": "",
                                "ebay3autorelistmax": "",
                                "ebay3autorelistprice": "",
                                "ebay3bestofferautoacceptprice": 0,
                                "ebay3bestofferenabled": "",
                                "ebay3bestofferminimumprice": 0,
                                "ebay3buyitnow": 0,
                                "ebay3catid": "0",
                                "ebay3country": "",
                                "ebay3currency": "",
                                "ebay3description": "",
                                "ebay3dispatch": "",
                                "ebay3duration": "",
                                "ebay3endtime": "",
                                "ebay3fitmentcatalog": "",
                                "ebay3getitfast": "",
                                "ebay3holidayreturn": "",
                                "ebay3id": "0",
                                "ebay3internationalon": "",
                                "ebay3listing": "",
                                "ebay3location": "",
                                "ebay3minimumadvertisedprice": "",
                                "ebay3minimumadvertisedpriceexposure": "",
                                "ebay3options": {
                                  "autorelist": {
                                    "action": "",
                                    "count": "",
                                    "duration": "",
                                    "max": "",
                                    "price": ""
                                  },
                                  "bestoffer": {
                                    "autoacceptprice": 0,
                                    "minimumprice": 0
                                  },
                                  "buyitnow": 0,
                                  "country": "",
                                  "dispatch": null,
                                  "duration": "",
                                  "fitmentcatalog": "",
                                  "internationalon": "",
                                  "listing": "",
                                  "location": "",
                                  "minimumadvertisedprice": "",
                                  "minimumadvertisedpriceexposure": "",
                                  "paymentinstructions": "",
                                  "paymentmethods": [
                                    ""
                                  ],
                                  "paymentprofileid": "",
                                  "returnprofileid": "",
                                  "returns": {
                                    "description": ""
                                  },
                                  "salestaxpercent": 0,
                                  "scheduletime": "",
                                  "secondcategory": "",
                                  "shipping": {
                                    "calculated": {
                                      "handlingfee": 0,
                                      "internationalhandlingfee": 0,
                                      "postalcode": "",
                                      "shippingirregular": false,
                                      "shippingpackage": ""
                                    },
                                    "domestic": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      }
                                    },
                                    "excludes": [
                                      ""
                                    ],
                                    "international": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "5": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      }
                                    }
                                  },
                                  "shippingprofileid": "",
                                  "shiptolocations": [
                                    ""
                                  ],
                                  "siteid": "",
                                  "siteshipping": "",
                                  "subtitle": "",
                                  "taxcategory": "",
                                  "template": ""
                                },
                                "ebay3paymentinstructions": "",
                                "ebay3paymentmethods": "",
                                "ebay3paymentprofileid": "",
                                "ebay3paypalemailaddress": "",
                                "ebay3prefiliteminfo": "",
                                "ebay3price": "0.00",
                                "ebay3private": "",
                                "ebay3promotionendtime": "",
                                "ebay3promotionstarttime": "",
                                "ebay3returnprofileid": "",
                                "ebay3returnsdescription": "",
                                "ebay3returnsrefund": "",
                                "ebay3returnsrestockingfeevalue": "",
                                "ebay3returnsreturnsaccepted": "",
                                "ebay3returnsreturnswithin": "",
                                "ebay3returnsshippingcostpaidby": "",
                                "ebay3salestaxpercent": 0,
                                "ebay3scheduletime": "",
                                "ebay3secondcategory": "",
                                "ebay3shippingcalculatedhandlingfee": 0,
                                "ebay3shippingcalculatedinternationalhandlingfee": 0,
                                "ebay3shippingcalculatedpostalcode": "",
                                "ebay3shippingcalculatedshippingirregular": false,
                                "ebay3shippingcalculatedshippingpackage": "",
                                "ebay3shippingdomestic1additionalcost": 0,
                                "ebay3shippingdomestic1cost": 0,
                                "ebay3shippingdomestic1cutofftime": "",
                                "ebay3shippingdomestic1expedited": "",
                                "ebay3shippingdomestic1freeshipping": "",
                                "ebay3shippingdomestic1handling": "",
                                "ebay3shippingdomestic1insurancecost": 0,
                                "ebay3shippingdomestic1localpickup": "",
                                "ebay3shippingdomestic1service": "",
                                "ebay3shippingdomestic1surcharge": 0,
                                "ebay3shippingdomestic1timemax": 0,
                                "ebay3shippingdomestic1timemin": 0,
                                "ebay3shippingdomestic2additionalcost": 0,
                                "ebay3shippingdomestic2cost": 0,
                                "ebay3shippingdomestic2cutofftime": "",
                                "ebay3shippingdomestic2expedited": "",
                                "ebay3shippingdomestic2freeshipping": "",
                                "ebay3shippingdomestic2handling": "",
                                "ebay3shippingdomestic2insurancecost": 0,
                                "ebay3shippingdomestic2localpickup": "",
                                "ebay3shippingdomestic2service": "",
                                "ebay3shippingdomestic2surcharge": 0,
                                "ebay3shippingdomestic2timemax": 0,
                                "ebay3shippingdomestic2timemin": 0,
                                "ebay3shippingdomestic3additionalcost": 0,
                                "ebay3shippingdomestic3cost": 0,
                                "ebay3shippingdomestic3cutofftime": "",
                                "ebay3shippingdomestic3expedited": "",
                                "ebay3shippingdomestic3freeshipping": "",
                                "ebay3shippingdomestic3handling": "",
                                "ebay3shippingdomestic3insurancecost": 0,
                                "ebay3shippingdomestic3localpickup": "",
                                "ebay3shippingdomestic3service": "",
                                "ebay3shippingdomestic3surcharge": 0,
                                "ebay3shippingdomestic3timemax": 0,
                                "ebay3shippingdomestic3timemin": 0,
                                "ebay3shippingdomestic4additionalcost": 0,
                                "ebay3shippingdomestic4cost": 0,
                                "ebay3shippingdomestic4cutofftime": "",
                                "ebay3shippingdomestic4expedited": "",
                                "ebay3shippingdomestic4freeshipping": "",
                                "ebay3shippingdomestic4handling": "",
                                "ebay3shippingdomestic4insurancecost": 0,
                                "ebay3shippingdomestic4localpickup": "",
                                "ebay3shippingdomestic4service": "",
                                "ebay3shippingdomestic4surcharge": 0,
                                "ebay3shippingdomestic4timemax": 0,
                                "ebay3shippingdomestic4timemin": 0,
                                "ebay3shippingexcludes": "",
                                "ebay3shippingglobal": "",
                                "ebay3shippingincludedintax": "",
                                "ebay3shippinginternational1additionalcost": 0,
                                "ebay3shippinginternational1cost": 0,
                                "ebay3shippinginternational1cutofftime": "",
                                "ebay3shippinginternational1handling": "",
                                "ebay3shippinginternational1insurancecost": 0,
                                "ebay3shippinginternational1location": "",
                                "ebay3shippinginternational1service": "",
                                "ebay3shippinginternational2additionalcost": 0,
                                "ebay3shippinginternational2cost": 0,
                                "ebay3shippinginternational2cutofftime": "",
                                "ebay3shippinginternational2handling": "",
                                "ebay3shippinginternational2insurancecost": 0,
                                "ebay3shippinginternational2location": "",
                                "ebay3shippinginternational2service": "",
                                "ebay3shippinginternational3additionalcost": 0,
                                "ebay3shippinginternational3cost": 0,
                                "ebay3shippinginternational3cutofftime": "",
                                "ebay3shippinginternational3handling": "",
                                "ebay3shippinginternational3insurancecost": 0,
                                "ebay3shippinginternational3location": "",
                                "ebay3shippinginternational3service": "",
                                "ebay3shippinginternational4additionalcost": 0,
                                "ebay3shippinginternational4cost": 0,
                                "ebay3shippinginternational4cutofftime": "",
                                "ebay3shippinginternational4handling": "",
                                "ebay3shippinginternational4insurancecost": 0,
                                "ebay3shippinginternational4location": "",
                                "ebay3shippinginternational4service": "",
                                "ebay3shippinginternational5additionalcost": 0,
                                "ebay3shippinginternational5cost": 0,
                                "ebay3shippinginternational5cutofftime": "",
                                "ebay3shippinginternational5handling": "",
                                "ebay3shippinginternational5insurancecost": 0,
                                "ebay3shippinginternational5location": "",
                                "ebay3shippinginternational5service": "",
                                "ebay3shippingprofileid": "",
                                "ebay3shippingratetabledom": "",
                                "ebay3shippingratetableintl": "",
                                "ebay3shippingtype": "",
                                "ebay3shiptolocations": "",
                                "ebay3siteid": "",
                                "ebay3siteshipping": "",
                                "ebay3skip": "",
                                "ebay3sku": "",
                                "ebay3starttime": "",
                                "ebay3storeid": "0",
                                "ebay3storeid2": "0",
                                "ebay3subtitle": "",
                                "ebay3taxcategory": "",
                                "ebay3template": "",
                                "ebay3title": "",
                                "ebay3upcnot": "",
                                "ebayadult": "",
                                "ebayauctionsrelist": "",
                                "ebayautopay": "",
                                "ebayautorelistaction": "",
                                "ebayautorelistcount": "",
                                "ebayautorelistduration": "",
                                "ebayautorelistmax": "",
                                "ebayautorelistprice": "",
                                "ebaybestofferautoacceptprice": 0,
                                "ebaybestofferenabled": "",
                                "ebaybestofferminimumprice": 0,
                                "ebaybuyitnow": 0,
                                "ebaycatid": "0",
                                "ebaycountry": "",
                                "ebaycurrency": "",
                                "ebaydescription": "",
                                "ebaydispatch": "",
                                "ebayduration": "",
                                "ebayendtime": "",
                                "ebayepid": "0",
                                "ebayfitmentcatalog": "",
                                "ebaygetitfast": "",
                                "ebayholidayreturn": "",
                                "ebayid": "0",
                                "ebayinternationalon": "",
                                "ebayitemspecificsmapprice": "",
                                "ebayitemspecificswarranty": "",
                                "ebayktype": "",
                                "ebaylisting": "",
                                "ebaylocation": "",
                                "ebayminimumadvertisedprice": "",
                                "ebayminimumadvertisedpriceexposure": "",
                                "ebayoptions": {
                                  "autorelist": {
                                    "action": "",
                                    "count": "",
                                    "duration": "",
                                    "max": "",
                                    "price": ""
                                  },
                                  "bestoffer": {
                                    "autoacceptprice": 0,
                                    "minimumprice": 0
                                  },
                                  "buyitnow": 0,
                                  "country": "",
                                  "dispatch": null,
                                  "duration": "",
                                  "fitmentcatalog": "",
                                  "internationalon": "",
                                  "itemspecifics": [],
                                  "listing": "",
                                  "location": "",
                                  "minimumadvertisedprice": "",
                                  "minimumadvertisedpriceexposure": "",
                                  "paymentinstructions": "",
                                  "paymentmethods": [
                                    ""
                                  ],
                                  "paymentprofileid": "-1",
                                  "returnprofileid": "-1",
                                  "returns": {
                                    "description": ""
                                  },
                                  "salestaxpercent": 0,
                                  "scheduletime": "",
                                  "secondcategory": "",
                                  "shipping": {
                                    "calculated": {
                                      "handlingfee": 0,
                                      "internationalhandlingfee": 0,
                                      "postalcode": "",
                                      "shippingirregular": false,
                                      "shippingpackage": ""
                                    },
                                    "domestic": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "service": "",
                                        "surcharge": 0,
                                        "timemax": 0,
                                        "timemin": 0
                                      }
                                    },
                                    "excludes": [
                                      ""
                                    ],
                                    "international": {
                                      "1": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "2": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "3": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "4": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      },
                                      "5": {
                                        "additionalcost": 0,
                                        "cost": 0,
                                        "insurancecost": 0,
                                        "location": "",
                                        "service": ""
                                      }
                                    }
                                  },
                                  "shippingprofileid": "-1",
                                  "shiptolocations": [
                                    ""
                                  ],
                                  "siteid": "",
                                  "siteshipping": "",
                                  "skip": "alwaysSkip",
                                  "subtitle": "",
                                  "taxcategory": "",
                                  "template": ""
                                },
                                "ebaypaymentinstructions": "",
                                "ebaypaymentmethods": "",
                                "ebaypaymentprofileid": "-1",
                                "ebaypaypalemailaddress": "",
                                "ebayprefiliteminfo": "",
                                "ebayprice": "59.99",
                                "ebayprivate": "",
                                "ebayproductid": "",
                                "ebaypromotionendtime": "",
                                "ebaypromotionstarttime": "",
                                "ebayreturnprofileid": "-1",
                                "ebayreturnsdescription": "",
                                "ebayreturnsrefund": "",
                                "ebayreturnsrestockingfeevalue": "",
                                "ebayreturnsreturnsaccepted": "",
                                "ebayreturnsreturnswithin": "",
                                "ebayreturnsshippingcostpaidby": "",
                                "ebaysalestaxpercent": 0,
                                "ebayscheduletime": "",
                                "ebaysecondcategory": "",
                                "ebayshippingcalculatedhandlingfee": 0,
                                "ebayshippingcalculatedinternationalhandlingfee": 0,
                                "ebayshippingcalculatedpostalcode": "",
                                "ebayshippingcalculatedshippingirregular": false,
                                "ebayshippingcalculatedshippingpackage": "",
                                "ebayshippingdomestic1additionalcost": 0,
                                "ebayshippingdomestic1cost": 0,
                                "ebayshippingdomestic1cutofftime": "",
                                "ebayshippingdomestic1expedited": "",
                                "ebayshippingdomestic1freeshipping": "",
                                "ebayshippingdomestic1handling": "",
                                "ebayshippingdomestic1insurancecost": 0,
                                "ebayshippingdomestic1localpickup": "",
                                "ebayshippingdomestic1service": "",
                                "ebayshippingdomestic1surcharge": 0,
                                "ebayshippingdomestic1timemax": 0,
                                "ebayshippingdomestic1timemin": 0,
                                "ebayshippingdomestic2additionalcost": 0,
                                "ebayshippingdomestic2cost": 0,
                                "ebayshippingdomestic2cutofftime": "",
                                "ebayshippingdomestic2expedited": "",
                                "ebayshippingdomestic2freeshipping": "",
                                "ebayshippingdomestic2handling": "",
                                "ebayshippingdomestic2insurancecost": 0,
                                "ebayshippingdomestic2localpickup": "",
                                "ebayshippingdomestic2service": "",
                                "ebayshippingdomestic2surcharge": 0,
                                "ebayshippingdomestic2timemax": 0,
                                "ebayshippingdomestic2timemin": 0,
                                "ebayshippingdomestic3additionalcost": 0,
                                "ebayshippingdomestic3cost": 0,
                                "ebayshippingdomestic3cutofftime": "",
                                "ebayshippingdomestic3expedited": "",
                                "ebayshippingdomestic3freeshipping": "",
                                "ebayshippingdomestic3handling": "",
                                "ebayshippingdomestic3insurancecost": 0,
                                "ebayshippingdomestic3localpickup": "",
                                "ebayshippingdomestic3service": "",
                                "ebayshippingdomestic3surcharge": 0,
                                "ebayshippingdomestic3timemax": 0,
                                "ebayshippingdomestic3timemin": 0,
                                "ebayshippingdomestic4additionalcost": 0,
                                "ebayshippingdomestic4cost": 0,
                                "ebayshippingdomestic4cutofftime": "",
                                "ebayshippingdomestic4expedited": "",
                                "ebayshippingdomestic4freeshipping": "",
                                "ebayshippingdomestic4handling": "",
                                "ebayshippingdomestic4insurancecost": 0,
                                "ebayshippingdomestic4localpickup": "",
                                "ebayshippingdomestic4service": "",
                                "ebayshippingdomestic4surcharge": 0,
                                "ebayshippingdomestic4timemax": 0,
                                "ebayshippingdomestic4timemin": 0,
                                "ebayshippingexcludes": "",
                                "ebayshippingglobal": "",
                                "ebayshippingincludedintax": "",
                                "ebayshippinginternational1additionalcost": 0,
                                "ebayshippinginternational1cost": 0,
                                "ebayshippinginternational1cutofftime": "",
                                "ebayshippinginternational1handling": "",
                                "ebayshippinginternational1insurancecost": 0,
                                "ebayshippinginternational1location": "",
                                "ebayshippinginternational1service": "",
                                "ebayshippinginternational2additionalcost": 0,
                                "ebayshippinginternational2cost": 0,
                                "ebayshippinginternational2cutofftime": "",
                                "ebayshippinginternational2handling": "",
                                "ebayshippinginternational2insurancecost": 0,
                                "ebayshippinginternational2location": "",
                                "ebayshippinginternational2service": "",
                                "ebayshippinginternational3additionalcost": 0,
                                "ebayshippinginternational3cost": 0,
                                "ebayshippinginternational3cutofftime": "",
                                "ebayshippinginternational3handling": "",
                                "ebayshippinginternational3insurancecost": 0,
                                "ebayshippinginternational3location": "",
                                "ebayshippinginternational3service": "",
                                "ebayshippinginternational4additionalcost": 0,
                                "ebayshippinginternational4cost": 0,
                                "ebayshippinginternational4cutofftime": "",
                                "ebayshippinginternational4handling": "",
                                "ebayshippinginternational4insurancecost": 0,
                                "ebayshippinginternational4location": "",
                                "ebayshippinginternational4service": "",
                                "ebayshippinginternational5additionalcost": 0,
                                "ebayshippinginternational5cost": 0,
                                "ebayshippinginternational5cutofftime": "",
                                "ebayshippinginternational5handling": "",
                                "ebayshippinginternational5insurancecost": 0,
                                "ebayshippinginternational5location": "",
                                "ebayshippinginternational5service": "",
                                "ebayshippingprofileid": "-1",
                                "ebayshippingratetabledom": "",
                                "ebayshippingratetableintl": "",
                                "ebayshippingtype": "",
                                "ebayshiptolocations": "",
                                "ebaysiteid": "",
                                "ebaysiteshipping": "",
                                "ebayskip": "alwaysSkip",
                                "ebaysku": "",
                                "ebaystarttime": "",
                                "ebaystoreid": "0",
                                "ebaystoreid2": "0",
                                "ebaysubtitle": "",
                                "ebaytaxcategory": "",
                                "ebaytemplate": "",
                                "ebaytitle": "",
                                "ebayupcnot": "",
                                "etsycategoryid": "",
                                "etsydescription": "",
                                "etsyiscustomizable": "",
                                "etsyissupply": "",
                                "etsylistingid": "0",
                                "etsymaterials": "",
                                "etsynontaxable": "",
                                "etsyoccasion": "",
                                "etsyoptions": {
                                  "category_id": "",
                                  "description": "",
                                  "is_customizable": "",
                                  "is_supply": "",
                                  "materials": "",
                                  "non_taxable": "",
                                  "occasion": "",
                                  "opts_listing_id": "",
                                  "price": "",
                                  "recipient": "",
                                  "shipping_template_id": "",
                                  "shop_section_id": "",
                                  "skip": "",
                                  "state": "",
                                  "title": "",
                                  "variant_keys": "",
                                  "when_made": "",
                                  "who_made": ""
                                },
                                "etsyoptslistingid": "",
                                "etsyprice": "",
                                "etsyrecipient": "",
                                "etsyshippingtemplateid": "",
                                "etsyshopsectionid": "",
                                "etsyskip": "",
                                "etsystate": "",
                                "etsytitle": "",
                                "etsyvariantkeys": "",
                                "etsywhenmade": "",
                                "etsywhomade": "",
                                "exportlabel": "",
                                "featured": "0",
                                "flavor": "",
                                "floormatlogo": "",
                                "fulfillmentlatency": "0",
                                "galleryuri": "",
                                "geolocation": "",
                                "googlecategory": "",
                                "googleshopping": "1",
                                "googleshopurl": "",
                                "guid": "U8800",
                                "guidad": "",
                                "handlingfee": "0.00",
                                "hosierysize": "",
                                "htmltitle": "",
                                "id": "1",
                                "importfield": "",
                                "inseam": "",
                                "internationalshipping1": "0.00",
                                "intimatessleepsizewomens": "",
                                "isbn": "",
                                "iskit": "0",
                                "iskit_calculated_cost": false,
                                "iskit_calculated_price": false,
                                "jacketlength": "",
                                "jacketsize": "",
                                "keywords": "",
                                "longdescription": "<p>Stay connected to friends and family with this mobile phone thatfeatures 4G speed, Wi-Fi and an Android 2.2 operating system for enhanced productivity on the go.The 5.0MP digital camera features a 4x zoom and autofocus for clear photos. Requires a minimumdata service starting at $15/month. Early termination fees will be prorated, starting at $325 minus $10for each full month of service commitment completed.</p>",
                                "magento2attributeset": "",
                                "magento2categories": "",
                                "magento2description": "",
                                "magento2listingid": "",
                                "magento2metadescription": "",
                                "magento2metakeyword": "",
                                "magento2metatitle": "",
                                "magento2name": "",
                                "magento2oldlistingid": "",
                                "magento2oldsku": "",
                                "magento2options": {
                                  "attribute_set": "",
                                  "price": "59.99",
                                  "tax_class_id": ""
                                },
                                "magento2parentsku": "",
                                "magento2price": "59.99",
                                "magento2shortdescription": "",
                                "magento2skip": "",
                                "magento2sku": "",
                                "magento2storepath": "",
                                "magento2taxclassid": "",
                                "magento2urlkey": "",
                                "magento2urlpath": "",
                                "magentoattributeset": "",
                                "magentocategories": "",
                                "magentodescription": "",
                                "magentolistingid": "",
                                "magentometadescription": "",
                                "magentometakeyword": "",
                                "magentometatitle": "",
                                "magentoname": "",
                                "magentooldlistingid": "",
                                "magentooldsku": "",
                                "magentooptions": {
                                  "attribute_set": "",
                                  "categories": "",
                                  "description": "",
                                  "meta_description": "",
                                  "meta_keyword": "",
                                  "meta_title": "",
                                  "name": "",
                                  "old_listing_id": "",
                                  "old_sku": "",
                                  "parent_sku": "",
                                  "price": "",
                                  "short_description": "",
                                  "skip": "",
                                  "store_path": "",
                                  "tax_class_id": "",
                                  "url_key": "",
                                  "url_path": ""
                                },
                                "magentoparentsku": "",
                                "magentoprice": "",
                                "magentoshortdescription": "",
                                "magentoskip": "",
                                "magentosku": "",
                                "magentostorepath": "",
                                "magentotaxclassid": "",
                                "magentourlkey": "",
                                "magentourlpath": "",
                                "manufacturer": "",
                                "manufacturerpartnumber": "",
                                "mapprice": "0.00",
                                "material": "",
                                "maxstock": "0",
                                "media1": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                                "media10": "",
                                "media10alttext": "",
                                "media11alttext": "",
                                "media1alttext": "",
                                "media2": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black-2.jpg",
                                "media2alttext": "",
                                "media3": "",
                                "media3alttext": "",
                                "media4": "",
                                "media4alttext": "",
                                "media5": "",
                                "media5alttext": "",
                                "media6": "",
                                "media6alttext": "",
                                "media7": "",
                                "media7alttext": "",
                                "media8": "",
                                "media8alttext": "",
                                "media9": "",
                                "media9alttext": "",
                                "mediacount": "2",
                                "mediax": "",
                                "metadescription": "",
                                "metal": "",
                                "meyersku": "",
                                "meyerstock": "0",
                                "minstock": "0",
                                "model": "",
                                "modelnumber": "",
                                "mpn": "",
                                "msrp": "0.00",
                                "name": "yesatt",
                                "nameofnewfield": "",
                                "newbccffield1": "",
                                "notes": "",
                                "numberofitems": "",
                                "packagequantity": "",
                                "parenturi": "android-smartphones",
                                "pl20160304001": "",
                                "pl20160304003": "",
                                "preexistingcustomarc005": "",
                                "price": "59.99",
                                "productshippingtemplate": "",
                                "producttaxcode": "",
                                "producttype": "",
                                "registeredparameter": "",
                                "releasedate": "",
                                "ringsize": "",
                                "rule": "update",
                                "shelfdescription": "",
                                "shipping": "0.00",
                                "shippingadditional": "0.00",
                                "size": "8gb",
                                "sizemens": "",
                                "sizetype": "",
                                "sizewomens": "",
                                "sku": "U8800",
                                "skuvaultbrand": "",
                                "skuvaultclassification": "",
                                "skuvaultcode": "",
                                "skuvaultcost": "",
                                "skuvaultdescription": "",
                                "skuvaultiskit": "",
                                "skuvaultislisted": "",
                                "skuvaultlocationinfo": "",
                                "skuvaultoptions": {
                                  "Brand": "",
                                  "Classification": "",
                                  "Code": "",
                                  "Cost": "",
                                  "Description": "",
                                  "PartNumber": "",
                                  "QuantityAvailable": "",
                                  "RetailPrice": "",
                                  "SalePrice": "",
                                  "Supplier": "",
                                  "isListed": "",
                                  "iskit": "",
                                  "locationInfo": "",
                                  "skip": ""
                                },
                                "skuvaultpartnumber": "",
                                "skuvaultquantityavailable": "",
                                "skuvaultretailprice": "",
                                "skuvaultsaleprice": "",
                                "skuvaultskip": "",
                                "skuvaultsku": "",
                                "skuvaultsupplier": "",
                                "sleevelength": "",
                                "socksize": "",
                                "state": "active",
                                "status": "publish",
                                "stock": "1",
                                "style": "Matte",
                                "test": "",
                                "test2": "",
                                "testfield3": "",
                                "testx1": "",
                                "threadcolor": "",
                                "title": "AT&T Impulse 4G Mobile Phone - Black",
                                "total_stock": "4",
                                "totalsold": "5",
                                "transamericansku": "",
                                "transamericanstock": "0",
                                "tx1": "",
                                "tx10": "",
                                "tx11": "",
                                "tx12": "",
                                "tx13": "",
                                "tx3": "",
                                "type": "",
                                "upc": "",
                                "updatenotes": "",
                                "updatereason": "S*S*S*S*S",
                                "uri": "att-impulse-4g-mobile-phone-black-u8800",
                                "usertype": "",
                                "userupc": "",
                                "usshoesizemens": "",
                                "usshoesizewomens": "",
                                "variationtheme": "",
                                "vendorstock": "3",
                                "waistsize": "",
                                "walmartcategory": "",
                                "walmartdescription": "",
                                "walmartenqueued": "",
                                "walmartinprogress": "0",
                                "walmartislisted": "0",
                                "walmartmedia": "",
                                "walmartname": "",
                                "walmartoptions": {
                                  "category": "",
                                  "description": "",
                                  "enqueued": "",
                                  "media": "",
                                  "name": "",
                                  "price": "",
                                  "skip": "",
                                  "url": ""
                                },
                                "walmartprice": "",
                                "walmartskip": "",
                                "walmartsku": "",
                                "walmartstatus": "",
                                "walmarturl": "",
                                "warranty": "",
                                "weight": "0.50",
                                "wmcategory": "",
                                "wmtaxcode": "",
                                "working": ""
                              }
                            },
                            "itemid": "456",
                            "media": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                            "price": "13.17",
                            "quantity": "1",
                            "sku": "U8800",
                            "source": "",
                            "title": "mpulse 4G Mobile Phone Case",
                            "weight": "1.00"
                          }
                        ],
                        "itemtotal": "13.17",
                        "meta": [],
                        "oid": "353",
                        "oidconsolidate": "0",
                        "order": "custom12345",
                        "ordernumber": "12345",
                        "payment": "Visa",
                        "paymentdate": "2018-06-27 13:38:25",
                        "paymentstatus": "COMPLETE",
                        "refunds": [],
                        "shipments": [
                          {
                            "shipcarrier": "FedEx",
                            "shipcost": "0.00",
                            "shipdate": "2018-07-01 00:00:01",
                            "shipdetails": [],
                            "shipid": "49",
                            "shipservice": "",
                            "shiptracking": "9999999999",
                            "shipuser": ""
                          }
                        ],
                        "shipping": {
                          "city": "New York",
                          "company": "",
                          "country": "US",
                          "firstname": "Test",
                          "lastname": "User",
                          "middlename": "",
                          "phone": "877-773-6755",
                          "phone2": "",
                          "postalcode": "10010",
                          "stateprovince": "NY",
                          "street1": "115 E 23rd St",
                          "street2": "FL 3",
                          "street3": ""
                        },
                        "shippingcarrier": "FedEx",
                        "shippingservice": "Standard",
                        "shippingstatus": "COMPLETE",
                        "shippingtotal": "0.00",
                        "status": "COMPLETE",
                        "taxtotal": "0.00",
                        "total": "13.17",
                        "transactionid": "30090115962746"
                      }
                    ],
                    "timestamp": "2018-08-11T20:04:35Z"
                  },
                  "properties": {
                    "count": {
                      "type": "string"
                    },
                    "orders": {
                      "items": {
                        "properties": {
                          "account": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "archived": {
                            "type": "string"
                          },
                          "billing": {
                            "properties": {
                              "city": {
                                "type": "string"
                              },
                              "company": {
                                "type": "string"
                              },
                              "country": {
                                "type": "string"
                              },
                              "firstname": {
                                "type": "string"
                              },
                              "lastname": {
                                "type": "string"
                              },
                              "middlename": {
                                "type": "string"
                              },
                              "phone": {
                                "type": "string"
                              },
                              "phone2": {
                                "type": "string"
                              },
                              "postalcode": {
                                "type": "string"
                              },
                              "stateprovince": {
                                "type": "string"
                              },
                              "street1": {
                                "type": "string"
                              },
                              "street2": {
                                "type": "string"
                              },
                              "street3": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "channel": {
                            "type": "string"
                          },
                          "comments": {
                            "type": "string"
                          },
                          "correlationid": {
                            "type": "string"
                          },
                          "currency": {
                            "type": "string"
                          },
                          "date": {
                            "type": "string"
                          },
                          "dateupdated": {
                            "type": "string"
                          },
                          "dateupdatedutc": {
                            "type": "string"
                          },
                          "dateutc": {
                            "type": "string"
                          },
                          "details": {
                            "properties": {
                              "currency": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "deliver-by-earliest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "deliver-by-latest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "handling": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              },
                              "itemfee": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "ship-by-earliest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "ship-by-latest": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "shipping": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              },
                              "shipservice": {
                                "items": {
                                  "type": "string"
                                },
                                "type": "array"
                              },
                              "shiptax": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              },
                              "tax": {
                                "items": {
                                  "type": "number"
                                },
                                "type": "array"
                              }
                            },
                            "type": "object"
                          },
                          "discountcode": {
                            "type": "string"
                          },
                          "discounttotal": {
                            "type": "string"
                          },
                          "email": {
                            "type": [
                              "string",
                              "null"
                            ],
                            "description": "Buyer email of record. May be `null` on channel orders that do not surface a customer email (e.g. eBay payment-only flows)."
                          },
                          "gift": {
                            "type": "string"
                          },
                          "handlingtotal": {
                            "type": "string"
                          },
                          "instance": {
                            "type": "string"
                          },
                          "internalnotes": {
                            "description": "Map of UTC timestamp string (e.g. `2018-08-11T16:22:49`) to the note body. Returned as an empty JSON array (`[]`) when no notes are present — PHP serializes an empty associative array this way.",
                            "oneOf": [
                              {
                                "type": "object",
                                "additionalProperties": {
                                  "type": "string"
                                }
                              },
                              {
                                "type": "array",
                                "maxItems": 0
                              }
                            ]
                          },
                          "ip": {
                            "type": "string"
                          },
                          "items": {
                            "items": {
                              "properties": {
                                "boxheight": {
                                  "type": "string"
                                },
                                "boxlength": {
                                  "type": "string"
                                },
                                "boxwidth": {
                                  "type": "string"
                                },
                                "dimweight": {
                                  "type": "string"
                                },
                                "itemdetails": {
                                  "properties": {
                                    "order-item-id": {
                                      "type": "string"
                                    },
                                    "product": {
                                      "properties": {
                                        "tags": {
                                          "type": "string"
                                        },
                                        "active": {
                                          "type": "string"
                                        },
                                        "actualcost": {
                                          "type": "string"
                                        },
                                        "amzn2asin": {
                                          "type": "string"
                                        },
                                        "amzn2category": {
                                          "type": "string"
                                        },
                                        "amzn2categorypath": {
                                          "type": "string"
                                        },
                                        "amzn2currency": {
                                          "type": "string"
                                        },
                                        "amzn2fba": {
                                          "type": "string"
                                        },
                                        "amzn2itemtype": {
                                          "type": "string"
                                        },
                                        "amzn2options": {
                                          "type": [
                                            "object",
                                            "null"
                                          ]
                                        },
                                        "amzn2parentbrand": {
                                          "type": "string"
                                        },
                                        "amzn2parentbullets": {
                                          "type": "string"
                                        },
                                        "amzn2parentdescription": {
                                          "type": "string"
                                        },
                                        "amzn2parentimage": {
                                          "type": "string"
                                        },
                                        "amzn2parenttitle": {
                                          "type": "string"
                                        },
                                        "amzn2price": {
                                          "type": "string"
                                        },
                                        "amzn2search": {
                                          "type": "string"
                                        },
                                        "amzn2skip": {
                                          "type": "string"
                                        },
                                        "amzn2sku": {
                                          "type": "string"
                                        },
                                        "amzn2status": {
                                          "type": "string"
                                        },
                                        "amzn2title": {
                                          "type": "string"
                                        },
                                        "amzn3asin": {
                                          "type": "string"
                                        },
                                        "amzn3category": {
                                          "type": "string"
                                        },
                                        "amzn3categorypath": {
                                          "type": "string"
                                        },
                                        "amzn3currency": {
                                          "type": "string"
                                        },
                                        "amzn3fba": {
                                          "type": "string"
                                        },
                                        "amzn3itemtype": {
                                          "type": "string"
                                        },
                                        "amzn3options": {
                                          "type": [
                                            "object",
                                            "null"
                                          ]
                                        },
                                        "amzn3parentbrand": {
                                          "type": "string"
                                        },
                                        "amzn3parentbullets": {
                                          "type": "string"
                                        },
                                        "amzn3parentdescription": {
                                          "type": "string"
                                        },
                                        "amzn3parentimage": {
                                          "type": "string"
                                        },
                                        "amzn3parenttitle": {
                                          "type": "string"
                                        },
                                        "amzn3price": {
                                          "type": "string"
                                        },
                                        "amzn3search": {
                                          "type": "string"
                                        },
                                        "amzn3skip": {
                                          "type": "string"
                                        },
                                        "amzn3sku": {
                                          "type": "string"
                                        },
                                        "amzn3status": {
                                          "type": "string"
                                        },
                                        "amzn3title": {
                                          "type": "string"
                                        },
                                        "amznasin": {
                                          "type": "string"
                                        },
                                        "amzncategory": {
                                          "type": "string"
                                        },
                                        "amzncategorypath": {
                                          "type": "string"
                                        },
                                        "amzncurrency": {
                                          "type": "string"
                                        },
                                        "amznfba": {
                                          "type": "string"
                                        },
                                        "amznitemtype": {
                                          "type": "string"
                                        },
                                        "amznoptions": {
                                          "properties": {
                                            "categorypath": {
                                              "type": "string"
                                            },
                                            "parentbrand": {
                                              "type": "string"
                                            },
                                            "parentbullets": {
                                              "type": "string"
                                            },
                                            "parentdescription": {
                                              "type": "string"
                                            },
                                            "parentimage": {
                                              "type": "string"
                                            },
                                            "parenttitle": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "amznparentbrand": {
                                          "type": "string"
                                        },
                                        "amznparentbullets": {
                                          "type": "string"
                                        },
                                        "amznparentdescription": {
                                          "type": "string"
                                        },
                                        "amznparentimage": {
                                          "type": "string"
                                        },
                                        "amznparenttitle": {
                                          "type": "string"
                                        },
                                        "amznprice": {
                                          "type": "string"
                                        },
                                        "amznsearch": {
                                          "type": "string"
                                        },
                                        "amznskip": {
                                          "type": "string"
                                        },
                                        "amznsku": {
                                          "type": "string"
                                        },
                                        "amznstatus": {
                                          "type": "string"
                                        },
                                        "amzntitle": {
                                          "type": "string"
                                        },
                                        "asset": {
                                          "type": "string"
                                        },
                                        "atest3": {
                                          "type": "string"
                                        },
                                        "bandsize": {
                                          "type": "string"
                                        },
                                        "bccf1": {
                                          "type": "string"
                                        },
                                        "bccustom1": {
                                          "type": "string"
                                        },
                                        "bccustom10": {
                                          "type": "string"
                                        },
                                        "bccustom11": {
                                          "type": "string"
                                        },
                                        "bccustom12": {
                                          "type": "string"
                                        },
                                        "bccustom13": {
                                          "type": "string"
                                        },
                                        "bccustom14": {
                                          "type": "string"
                                        },
                                        "bccustom15": {
                                          "type": "string"
                                        },
                                        "bccustom16": {
                                          "type": "string"
                                        },
                                        "bccustom17": {
                                          "type": "string"
                                        },
                                        "bccustom2": {
                                          "type": "string"
                                        },
                                        "bccustom3": {
                                          "type": "string"
                                        },
                                        "bccustom4": {
                                          "type": "string"
                                        },
                                        "bccustom5": {
                                          "type": "string"
                                        },
                                        "bccustom6": {
                                          "type": "string"
                                        },
                                        "bccustom7": {
                                          "type": "string"
                                        },
                                        "bccustom8": {
                                          "type": "string"
                                        },
                                        "bccustom9": {
                                          "type": "string"
                                        },
                                        "bcf1": {
                                          "type": "string"
                                        },
                                        "bcnewcf1": {
                                          "type": "string"
                                        },
                                        "bcnewcf2": {
                                          "type": "string"
                                        },
                                        "bcnewcf3": {
                                          "type": "string"
                                        },
                                        "bcnewcf4": {
                                          "type": "string"
                                        },
                                        "bcnewcf5": {
                                          "type": "string"
                                        },
                                        "bcnewcf6": {
                                          "type": "string"
                                        },
                                        "bcnewcf7": {
                                          "type": "string"
                                        },
                                        "bcnewcfa": {
                                          "type": "string"
                                        },
                                        "bcnewcfb": {
                                          "type": "string"
                                        },
                                        "bcnewcfc": {
                                          "type": "string"
                                        },
                                        "bcnewcfd": {
                                          "type": "string"
                                        },
                                        "bcnewcfe": {
                                          "type": "string"
                                        },
                                        "bcnewcff": {
                                          "type": "string"
                                        },
                                        "bcnewcfg": {
                                          "type": "string"
                                        },
                                        "bcnewcfh": {
                                          "type": "string"
                                        },
                                        "bcnewcfi": {
                                          "type": "string"
                                        },
                                        "bctest1": {
                                          "type": "string"
                                        },
                                        "bctest2": {
                                          "type": "string"
                                        },
                                        "bctest3": {
                                          "type": "string"
                                        },
                                        "bctest4": {
                                          "type": "string"
                                        },
                                        "bigcommerce2availability": {
                                          "type": "string"
                                        },
                                        "bigcommerce2availabilitydescription": {
                                          "type": "string"
                                        },
                                        "bigcommerce2avalaraproducttaxcode": {
                                          "type": "string"
                                        },
                                        "bigcommerce2binpickingnumber": {
                                          "type": "string"
                                        },
                                        "bigcommerce2brandid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2calculatedprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2categories": {
                                          "type": "string"
                                        },
                                        "bigcommerce2configurablefields": {
                                          "type": "string"
                                        },
                                        "bigcommerce2costprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2customfields": {
                                          "type": "string"
                                        },
                                        "bigcommerce2datecreated": {
                                          "type": "string"
                                        },
                                        "bigcommerce2datelastimported": {
                                          "type": "string"
                                        },
                                        "bigcommerce2description": {
                                          "type": "string"
                                        },
                                        "bigcommerce2discountrules": {
                                          "type": "string"
                                        },
                                        "bigcommerce2downloads": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdateend": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdatefieldname": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdatestart": {
                                          "type": "string"
                                        },
                                        "bigcommerce2eventdatetype": {
                                          "type": "string"
                                        },
                                        "bigcommerce2fixedcostshippingprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2images": {
                                          "type": "string"
                                        },
                                        "bigcommerce2inventorywarninglevel": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isconditionshown": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isfeatured": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isfreeshipping": {
                                          "type": "string"
                                        },
                                        "bigcommerce2isopengraphthumbnail": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ispreorderonly": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ispricehidden": {
                                          "type": "string"
                                        },
                                        "bigcommerce2keywordfilter": {
                                          "type": "string"
                                        },
                                        "bigcommerce2layoutfile": {
                                          "type": "string"
                                        },
                                        "bigcommerce2listingid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2manageproductrules": {
                                          "type": "string"
                                        },
                                        "bigcommerce2media": {
                                          "type": "string"
                                        },
                                        "bigcommerce2metadescription": {
                                          "type": "string"
                                        },
                                        "bigcommerce2metakeywords": {
                                          "type": "string"
                                        },
                                        "bigcommerce2myobassetaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2myobexpenseaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2myobincomeaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2name": {
                                          "type": "string"
                                        },
                                        "bigcommerce2opengraphdescription": {
                                          "type": "string"
                                        },
                                        "bigcommerce2opengraphtitle": {
                                          "type": "string"
                                        },
                                        "bigcommerce2opengraphtype": {
                                          "type": "string"
                                        },
                                        "bigcommerce2options": {
                                          "type": [
                                            "object",
                                            "null"
                                          ]
                                        },
                                        "bigcommerce2optionsetdisplay": {
                                          "type": "string"
                                        },
                                        "bigcommerce2optionsetid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2orderquantitymaximum": {
                                          "type": "string"
                                        },
                                        "bigcommerce2orderquantityminimum": {
                                          "type": "string"
                                        },
                                        "bigcommerce2pagetitle": {
                                          "type": "string"
                                        },
                                        "bigcommerce2path": {
                                          "type": "string"
                                        },
                                        "bigcommerce2peachtreeglaccount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2preordermessage": {
                                          "type": "string"
                                        },
                                        "bigcommerce2preorderreleasedate": {
                                          "type": "string"
                                        },
                                        "bigcommerce2price": {
                                          "type": "string"
                                        },
                                        "bigcommerce2pricehiddenlabel": {
                                          "type": "string"
                                        },
                                        "bigcommerce2productrule": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ratingcount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2ratingtotal": {
                                          "type": "string"
                                        },
                                        "bigcommerce2relatedproducts": {
                                          "type": "string"
                                        },
                                        "bigcommerce2retailprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2saleprice": {
                                          "type": "string"
                                        },
                                        "bigcommerce2searchkeywords": {
                                          "type": "string"
                                        },
                                        "bigcommerce2skip": {
                                          "type": "string"
                                        },
                                        "bigcommerce2sku": {
                                          "type": "string"
                                        },
                                        "bigcommerce2skuid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2taxclassid": {
                                          "type": "string"
                                        },
                                        "bigcommerce2totalsold": {
                                          "type": "string"
                                        },
                                        "bigcommerce2type": {
                                          "type": "string"
                                        },
                                        "bigcommerce2url": {
                                          "type": "string"
                                        },
                                        "bigcommerce2videos": {
                                          "type": "string"
                                        },
                                        "bigcommerce2viewcount": {
                                          "type": "string"
                                        },
                                        "bigcommerce2warranty": {
                                          "type": "string"
                                        },
                                        "bigcommerceavailability": {
                                          "type": "string"
                                        },
                                        "bigcommerceavailabilitydescription": {
                                          "type": "string"
                                        },
                                        "bigcommerceavalaraproducttaxcode": {
                                          "type": "string"
                                        },
                                        "bigcommercebinpickingnumber": {
                                          "type": "string"
                                        },
                                        "bigcommercebrandid": {
                                          "type": "string"
                                        },
                                        "bigcommercecalculatedprice": {
                                          "type": "string"
                                        },
                                        "bigcommercecategories": {
                                          "type": "string"
                                        },
                                        "bigcommerceconfigurablefields": {
                                          "type": "string"
                                        },
                                        "bigcommercecostprice": {
                                          "type": "string"
                                        },
                                        "bigcommercecustomfields": {
                                          "type": "string"
                                        },
                                        "bigcommercedatecreated": {
                                          "type": "string"
                                        },
                                        "bigcommercedatelastimported": {
                                          "type": "string"
                                        },
                                        "bigcommercedescription": {
                                          "type": "string"
                                        },
                                        "bigcommercediscountrules": {
                                          "type": "string"
                                        },
                                        "bigcommercedownloads": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdateend": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdatefieldname": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdatestart": {
                                          "type": "string"
                                        },
                                        "bigcommerceeventdatetype": {
                                          "type": "string"
                                        },
                                        "bigcommercefixedcostshippingprice": {
                                          "type": "string"
                                        },
                                        "bigcommerceimages": {
                                          "type": "string"
                                        },
                                        "bigcommerceinventorywarninglevel": {
                                          "type": "string"
                                        },
                                        "bigcommerceisconditionshown": {
                                          "type": "string"
                                        },
                                        "bigcommerceisfeatured": {
                                          "type": "string"
                                        },
                                        "bigcommerceisfreeshipping": {
                                          "type": "string"
                                        },
                                        "bigcommerceisopengraphthumbnail": {
                                          "type": "string"
                                        },
                                        "bigcommerceispreorderonly": {
                                          "type": "string"
                                        },
                                        "bigcommerceispricehidden": {
                                          "type": "string"
                                        },
                                        "bigcommercekeywordfilter": {
                                          "type": "string"
                                        },
                                        "bigcommercelayoutfile": {
                                          "type": "string"
                                        },
                                        "bigcommercelistingid": {
                                          "type": "string"
                                        },
                                        "bigcommercemanageproductrules": {
                                          "type": "string"
                                        },
                                        "bigcommercemedia": {
                                          "type": "string"
                                        },
                                        "bigcommercemetadescription": {
                                          "type": "string"
                                        },
                                        "bigcommercemetakeywords": {
                                          "type": "string"
                                        },
                                        "bigcommercemyobassetaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercemyobexpenseaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercemyobincomeaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercename": {
                                          "type": "string"
                                        },
                                        "bigcommerceopengraphdescription": {
                                          "type": "string"
                                        },
                                        "bigcommerceopengraphtitle": {
                                          "type": "string"
                                        },
                                        "bigcommerceopengraphtype": {
                                          "type": "string"
                                        },
                                        "bigcommerceoptions": {
                                          "properties": {
                                            "availability": {
                                              "type": "string"
                                            },
                                            "availability_description": {
                                              "type": "string"
                                            },
                                            "avalara_product_tax_code": {
                                              "type": "string"
                                            },
                                            "bin_picking_number": {
                                              "type": "string"
                                            },
                                            "brand_id": {
                                              "type": "string"
                                            },
                                            "calculated_price": {
                                              "type": "string"
                                            },
                                            "categories": {
                                              "type": "string"
                                            },
                                            "configurable_fields": {
                                              "type": "string"
                                            },
                                            "cost_price": {
                                              "type": "string"
                                            },
                                            "custom_fields": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "date_created": {
                                              "type": "string"
                                            },
                                            "date_last_imported": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "discount_rules": {
                                              "type": "string"
                                            },
                                            "downloads": {
                                              "type": "string"
                                            },
                                            "event_date_end": {
                                              "type": "string"
                                            },
                                            "event_date_field_name": {
                                              "type": "string"
                                            },
                                            "event_date_start": {
                                              "type": "string"
                                            },
                                            "event_date_type": {
                                              "type": "string"
                                            },
                                            "fixed_cost_shipping_price": {
                                              "type": "string"
                                            },
                                            "images": {
                                              "type": "string"
                                            },
                                            "inventory_warning_level": {
                                              "type": "string"
                                            },
                                            "is_condition_shown": {
                                              "type": "string"
                                            },
                                            "is_featured": {
                                              "type": "string"
                                            },
                                            "is_free_shipping": {
                                              "type": "string"
                                            },
                                            "is_open_graph_thumbnail": {
                                              "type": "string"
                                            },
                                            "is_preorder_only": {
                                              "type": "string"
                                            },
                                            "is_price_hidden": {
                                              "type": "string"
                                            },
                                            "keyword_filter": {
                                              "type": "string"
                                            },
                                            "layout_file": {
                                              "type": "string"
                                            },
                                            "manage_product_rules": {
                                              "type": "string"
                                            },
                                            "media": {
                                              "type": "string"
                                            },
                                            "meta_description": {
                                              "type": "string"
                                            },
                                            "meta_keywords": {
                                              "type": "string"
                                            },
                                            "myob_asset_account": {
                                              "type": "string"
                                            },
                                            "myob_expense_account": {
                                              "type": "string"
                                            },
                                            "myob_income_account": {
                                              "type": "string"
                                            },
                                            "name": {
                                              "type": "string"
                                            },
                                            "open_graph_description": {
                                              "type": "string"
                                            },
                                            "open_graph_title": {
                                              "type": "string"
                                            },
                                            "open_graph_type": {
                                              "type": "string"
                                            },
                                            "option_set_display": {
                                              "type": "string"
                                            },
                                            "option_set_id": {
                                              "type": "string"
                                            },
                                            "order_quantity_maximum": {
                                              "type": "string"
                                            },
                                            "order_quantity_minimum": {
                                              "type": "string"
                                            },
                                            "page_title": {
                                              "type": "string"
                                            },
                                            "path": {
                                              "type": "string"
                                            },
                                            "peachtree_gl_account": {
                                              "type": "string"
                                            },
                                            "preorder_message": {
                                              "type": "string"
                                            },
                                            "preorder_release_date": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "price_hidden_label": {
                                              "type": "string"
                                            },
                                            "product_rule": {
                                              "type": "string"
                                            },
                                            "rating_count": {
                                              "type": "string"
                                            },
                                            "rating_total": {
                                              "type": "string"
                                            },
                                            "related_products": {
                                              "type": "string"
                                            },
                                            "retail_price": {
                                              "type": "string"
                                            },
                                            "sale_price": {
                                              "type": "string"
                                            },
                                            "search_keywords": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "sku_id": {
                                              "type": "string"
                                            },
                                            "tax_class_id": {
                                              "type": "string"
                                            },
                                            "total_sold": {
                                              "type": "string"
                                            },
                                            "type": {
                                              "type": "string"
                                            },
                                            "url": {
                                              "type": "string"
                                            },
                                            "videos": {
                                              "type": "string"
                                            },
                                            "view_count": {
                                              "type": "string"
                                            },
                                            "warranty": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "bigcommerceoptionsetdisplay": {
                                          "type": "string"
                                        },
                                        "bigcommerceoptionsetid": {
                                          "type": "string"
                                        },
                                        "bigcommerceorderquantitymaximum": {
                                          "type": "string"
                                        },
                                        "bigcommerceorderquantityminimum": {
                                          "type": "string"
                                        },
                                        "bigcommercepagetitle": {
                                          "type": "string"
                                        },
                                        "bigcommercepath": {
                                          "type": "string"
                                        },
                                        "bigcommercepeachtreeglaccount": {
                                          "type": "string"
                                        },
                                        "bigcommercepreordermessage": {
                                          "type": "string"
                                        },
                                        "bigcommercepreorderreleasedate": {
                                          "type": "string"
                                        },
                                        "bigcommerceprice": {
                                          "type": "string"
                                        },
                                        "bigcommercepricehiddenlabel": {
                                          "type": "string"
                                        },
                                        "bigcommerceproductrule": {
                                          "type": "string"
                                        },
                                        "bigcommerceratingcount": {
                                          "type": "string"
                                        },
                                        "bigcommerceratingtotal": {
                                          "type": "string"
                                        },
                                        "bigcommercerelatedproducts": {
                                          "type": "string"
                                        },
                                        "bigcommerceretailprice": {
                                          "type": "string"
                                        },
                                        "bigcommercesaleprice": {
                                          "type": "string"
                                        },
                                        "bigcommercesearchkeywords": {
                                          "type": "string"
                                        },
                                        "bigcommerceskip": {
                                          "type": "string"
                                        },
                                        "bigcommercesku": {
                                          "type": "string"
                                        },
                                        "bigcommerceskuid": {
                                          "type": "string"
                                        },
                                        "bigcommercetaxclassid": {
                                          "type": "string"
                                        },
                                        "bigcommercetotalsold": {
                                          "type": "string"
                                        },
                                        "bigcommercetype": {
                                          "type": "string"
                                        },
                                        "bigcommerceurl": {
                                          "type": "string"
                                        },
                                        "bigcommercevideos": {
                                          "type": "string"
                                        },
                                        "bigcommerceviewcount": {
                                          "type": "string"
                                        },
                                        "bigcommercewarranty": {
                                          "type": "string"
                                        },
                                        "boing": {
                                          "type": "string"
                                        },
                                        "bottomssizemens": {
                                          "type": "string"
                                        },
                                        "bottomssizewomens": {
                                          "type": "string"
                                        },
                                        "boxheight": {
                                          "type": "string"
                                        },
                                        "boxlength": {
                                          "type": "string"
                                        },
                                        "boxweight": {
                                          "type": "string"
                                        },
                                        "boxwidth": {
                                          "type": "string"
                                        },
                                        "brand": {
                                          "type": "string"
                                        },
                                        "bulletpoint1": {
                                          "type": "string"
                                        },
                                        "bulletpoint2": {
                                          "type": "string"
                                        },
                                        "bulletpoint3": {
                                          "type": "string"
                                        },
                                        "bulletpoint4": {
                                          "type": "string"
                                        },
                                        "bulletpoint5": {
                                          "type": "string"
                                        },
                                        "cache": {
                                          "type": "string"
                                        },
                                        "category1": {
                                          "type": "string"
                                        },
                                        "category2": {
                                          "type": "string"
                                        },
                                        "category3": {
                                          "type": "string"
                                        },
                                        "category4": {
                                          "type": "string"
                                        },
                                        "category5": {
                                          "type": "string"
                                        },
                                        "cf010301004": {
                                          "type": "string"
                                        },
                                        "cf020301004": {
                                          "type": "string"
                                        },
                                        "cf030301004": {
                                          "type": "string"
                                        },
                                        "cf040301004": {
                                          "type": "string"
                                        },
                                        "cf1": {
                                          "type": "string"
                                        },
                                        "cf2": {
                                          "type": "string"
                                        },
                                        "cf20160223001": {
                                          "type": "string"
                                        },
                                        "cf20160223002": {
                                          "type": "string"
                                        },
                                        "cf20160223004": {
                                          "type": "string"
                                        },
                                        "cf20160223005": {
                                          "type": "string"
                                        },
                                        "cf20160223007": {
                                          "type": "string"
                                        },
                                        "cf20160223008": {
                                          "type": "string"
                                        },
                                        "cf20160223009": {
                                          "type": "string"
                                        },
                                        "cf20160223010": {
                                          "type": "string"
                                        },
                                        "cf20160223020": {
                                          "type": "string"
                                        },
                                        "cf20160223021": {
                                          "type": "string"
                                        },
                                        "cf3": {
                                          "type": "string"
                                        },
                                        "cf4": {
                                          "type": "string"
                                        },
                                        "cf5": {
                                          "type": "string"
                                        },
                                        "cf6": {
                                          "type": "string"
                                        },
                                        "cf7": {
                                          "type": "string"
                                        },
                                        "cf8": {
                                          "type": "string"
                                        },
                                        "cf9": {
                                          "type": "string"
                                        },
                                        "cfdn1": {
                                          "type": "string"
                                        },
                                        "cfon1": {
                                          "type": "string"
                                        },
                                        "click": {
                                          "type": "string"
                                        },
                                        "clubtype": {
                                          "type": "string"
                                        },
                                        "color": {
                                          "type": "string"
                                        },
                                        "colors": {
                                          "type": "string"
                                        },
                                        "condition": {
                                          "type": "string"
                                        },
                                        "content": {
                                          "type": "string"
                                        },
                                        "cost": {
                                          "type": "string"
                                        },
                                        "countryregionofmanufactur": {
                                          "type": "string"
                                        },
                                        "crazynewstyle": {
                                          "type": "string"
                                        },
                                        "cupsize": {
                                          "type": "string"
                                        },
                                        "customname": {
                                          "type": "string"
                                        },
                                        "cut": {
                                          "type": "string"
                                        },
                                        "date": {
                                          "type": "string"
                                        },
                                        "datesold": {
                                          "type": "string"
                                        },
                                        "dateupdated": {
                                          "type": "string"
                                        },
                                        "deeey": {
                                          "type": "string"
                                        },
                                        "department": {
                                          "type": "string"
                                        },
                                        "description": {
                                          "type": "string"
                                        },
                                        "dimweight": {
                                          "type": "string"
                                        },
                                        "discountprice": {
                                          "type": "string"
                                        },
                                        "domain": {
                                          "type": "string"
                                        },
                                        "dormanstock": {
                                          "type": "string"
                                        },
                                        "dressshirtsize": {
                                          "type": "string"
                                        },
                                        "ean": {
                                          "type": "string"
                                        },
                                        "ebay2adult": {
                                          "type": "string"
                                        },
                                        "ebay2auctionsrelist": {
                                          "type": "string"
                                        },
                                        "ebay2autopay": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistaction": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistcount": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistduration": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistmax": {
                                          "type": "string"
                                        },
                                        "ebay2autorelistprice": {
                                          "type": "string"
                                        },
                                        "ebay2bestofferautoacceptprice": {
                                          "type": "number"
                                        },
                                        "ebay2bestofferenabled": {
                                          "type": "string"
                                        },
                                        "ebay2bestofferminimumprice": {
                                          "type": "number"
                                        },
                                        "ebay2buyitnow": {
                                          "type": "number"
                                        },
                                        "ebay2catid": {
                                          "type": "string"
                                        },
                                        "ebay2country": {
                                          "type": "string"
                                        },
                                        "ebay2currency": {
                                          "type": "string"
                                        },
                                        "ebay2description": {
                                          "type": "string"
                                        },
                                        "ebay2dispatch": {
                                          "type": "string"
                                        },
                                        "ebay2duration": {
                                          "type": "string"
                                        },
                                        "ebay2endtime": {
                                          "type": "string"
                                        },
                                        "ebay2fitmentcatalog": {
                                          "type": "string"
                                        },
                                        "ebay2getitfast": {
                                          "type": "string"
                                        },
                                        "ebay2holidayreturn": {
                                          "type": "string"
                                        },
                                        "ebay2id": {
                                          "type": "string"
                                        },
                                        "ebay2internationalon": {
                                          "type": "string"
                                        },
                                        "ebay2listing": {
                                          "type": "string"
                                        },
                                        "ebay2location": {
                                          "type": "string"
                                        },
                                        "ebay2minimumadvertisedprice": {
                                          "type": "string"
                                        },
                                        "ebay2minimumadvertisedpriceexposure": {
                                          "type": "string"
                                        },
                                        "ebay2options": {
                                          "properties": {
                                            "autorelist": {
                                              "properties": {
                                                "action": {
                                                  "type": "string"
                                                },
                                                "count": {
                                                  "type": "string"
                                                },
                                                "duration": {
                                                  "type": "string"
                                                },
                                                "max": {
                                                  "type": "string"
                                                },
                                                "price": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "bestoffer": {
                                              "properties": {
                                                "autoacceptprice": {
                                                  "type": "number"
                                                },
                                                "minimumprice": {
                                                  "type": "number"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "buyitnow": {
                                              "type": "number"
                                            },
                                            "country": {
                                              "type": "string"
                                            },
                                            "dispatch": {
                                              "type": [
                                                "object",
                                                "null"
                                              ]
                                            },
                                            "duration": {
                                              "type": "string"
                                            },
                                            "fitmentcatalog": {
                                              "type": "string"
                                            },
                                            "internationalon": {
                                              "type": "string"
                                            },
                                            "listing": {
                                              "type": "string"
                                            },
                                            "location": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedprice": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedpriceexposure": {
                                              "type": "string"
                                            },
                                            "paymentinstructions": {
                                              "type": "string"
                                            },
                                            "paymentmethods": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "paymentprofileid": {
                                              "type": "string"
                                            },
                                            "returnprofileid": {
                                              "type": "string"
                                            },
                                            "returns": {
                                              "properties": {
                                                "description": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "salestaxpercent": {
                                              "type": "number"
                                            },
                                            "scheduletime": {
                                              "type": "string"
                                            },
                                            "secondcategory": {
                                              "type": "string"
                                            },
                                            "shipping": {
                                              "properties": {
                                                "calculated": {
                                                  "properties": {
                                                    "handlingfee": {
                                                      "type": "number"
                                                    },
                                                    "internationalhandlingfee": {
                                                      "type": "number"
                                                    },
                                                    "postalcode": {
                                                      "type": "string"
                                                    },
                                                    "shippingirregular": {
                                                      "type": "boolean"
                                                    },
                                                    "shippingpackage": {
                                                      "type": "string"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "domestic": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "excludes": {
                                                  "items": {
                                                    "type": "string"
                                                  },
                                                  "type": "array"
                                                },
                                                "international": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "5": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "shippingprofileid": {
                                              "type": "string"
                                            },
                                            "shiptolocations": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "siteid": {
                                              "type": "string"
                                            },
                                            "siteshipping": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "subtitle": {
                                              "type": "string"
                                            },
                                            "taxcategory": {
                                              "type": "string"
                                            },
                                            "template": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "ebay2paymentinstructions": {
                                          "type": "string"
                                        },
                                        "ebay2paymentmethods": {
                                          "type": "string"
                                        },
                                        "ebay2paymentprofileid": {
                                          "type": "string"
                                        },
                                        "ebay2paypalemailaddress": {
                                          "type": "string"
                                        },
                                        "ebay2prefiliteminfo": {
                                          "type": "string"
                                        },
                                        "ebay2price": {
                                          "type": "string"
                                        },
                                        "ebay2private": {
                                          "type": "string"
                                        },
                                        "ebay2promotionendtime": {
                                          "type": "string"
                                        },
                                        "ebay2promotionstarttime": {
                                          "type": "string"
                                        },
                                        "ebay2returnprofileid": {
                                          "type": "string"
                                        },
                                        "ebay2returnsdescription": {
                                          "type": "string"
                                        },
                                        "ebay2returnsrefund": {
                                          "type": "string"
                                        },
                                        "ebay2returnsrestockingfeevalue": {
                                          "type": "string"
                                        },
                                        "ebay2returnsreturnsaccepted": {
                                          "type": "string"
                                        },
                                        "ebay2returnsreturnswithin": {
                                          "type": "string"
                                        },
                                        "ebay2returnsshippingcostpaidby": {
                                          "type": "string"
                                        },
                                        "ebay2salestaxpercent": {
                                          "type": "number"
                                        },
                                        "ebay2scheduletime": {
                                          "type": "string"
                                        },
                                        "ebay2secondcategory": {
                                          "type": "string"
                                        },
                                        "ebay2shippingcalculatedhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay2shippingcalculatedinternationalhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay2shippingcalculatedpostalcode": {
                                          "type": "string"
                                        },
                                        "ebay2shippingcalculatedshippingirregular": {
                                          "type": "boolean"
                                        },
                                        "ebay2shippingcalculatedshippingpackage": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic1surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic1timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic2surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic2timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic3surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic3timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4expedited": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4localpickup": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingdomestic4surcharge": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4timemax": {
                                          "type": "number"
                                        },
                                        "ebay2shippingdomestic4timemin": {
                                          "type": "number"
                                        },
                                        "ebay2shippingexcludes": {
                                          "type": "string"
                                        },
                                        "ebay2shippingglobal": {
                                          "type": "string"
                                        },
                                        "ebay2shippingincludedintax": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational1cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational1location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational1service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational2cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational2location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational2service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational3cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational3location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational3service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational4cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational4location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational4service": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational5cost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational5cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5handling": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay2shippinginternational5location": {
                                          "type": "string"
                                        },
                                        "ebay2shippinginternational5service": {
                                          "type": "string"
                                        },
                                        "ebay2shippingprofileid": {
                                          "type": "string"
                                        },
                                        "ebay2shippingratetabledom": {
                                          "type": "string"
                                        },
                                        "ebay2shippingratetableintl": {
                                          "type": "string"
                                        },
                                        "ebay2shippingtype": {
                                          "type": "string"
                                        },
                                        "ebay2shiptolocations": {
                                          "type": "string"
                                        },
                                        "ebay2siteid": {
                                          "type": "string"
                                        },
                                        "ebay2siteshipping": {
                                          "type": "string"
                                        },
                                        "ebay2skip": {
                                          "type": "string"
                                        },
                                        "ebay2sku": {
                                          "type": "string"
                                        },
                                        "ebay2starttime": {
                                          "type": "string"
                                        },
                                        "ebay2storeid": {
                                          "type": "string"
                                        },
                                        "ebay2storeid2": {
                                          "type": "string"
                                        },
                                        "ebay2subtitle": {
                                          "type": "string"
                                        },
                                        "ebay2taxcategory": {
                                          "type": "string"
                                        },
                                        "ebay2template": {
                                          "type": "string"
                                        },
                                        "ebay2title": {
                                          "type": "string"
                                        },
                                        "ebay2upcnot": {
                                          "type": "string"
                                        },
                                        "ebay3adult": {
                                          "type": "string"
                                        },
                                        "ebay3auctionsrelist": {
                                          "type": "string"
                                        },
                                        "ebay3autopay": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistaction": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistcount": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistduration": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistmax": {
                                          "type": "string"
                                        },
                                        "ebay3autorelistprice": {
                                          "type": "string"
                                        },
                                        "ebay3bestofferautoacceptprice": {
                                          "type": "number"
                                        },
                                        "ebay3bestofferenabled": {
                                          "type": "string"
                                        },
                                        "ebay3bestofferminimumprice": {
                                          "type": "number"
                                        },
                                        "ebay3buyitnow": {
                                          "type": "number"
                                        },
                                        "ebay3catid": {
                                          "type": "string"
                                        },
                                        "ebay3country": {
                                          "type": "string"
                                        },
                                        "ebay3currency": {
                                          "type": "string"
                                        },
                                        "ebay3description": {
                                          "type": "string"
                                        },
                                        "ebay3dispatch": {
                                          "type": "string"
                                        },
                                        "ebay3duration": {
                                          "type": "string"
                                        },
                                        "ebay3endtime": {
                                          "type": "string"
                                        },
                                        "ebay3fitmentcatalog": {
                                          "type": "string"
                                        },
                                        "ebay3getitfast": {
                                          "type": "string"
                                        },
                                        "ebay3holidayreturn": {
                                          "type": "string"
                                        },
                                        "ebay3id": {
                                          "type": "string"
                                        },
                                        "ebay3internationalon": {
                                          "type": "string"
                                        },
                                        "ebay3listing": {
                                          "type": "string"
                                        },
                                        "ebay3location": {
                                          "type": "string"
                                        },
                                        "ebay3minimumadvertisedprice": {
                                          "type": "string"
                                        },
                                        "ebay3minimumadvertisedpriceexposure": {
                                          "type": "string"
                                        },
                                        "ebay3options": {
                                          "properties": {
                                            "autorelist": {
                                              "properties": {
                                                "action": {
                                                  "type": "string"
                                                },
                                                "count": {
                                                  "type": "string"
                                                },
                                                "duration": {
                                                  "type": "string"
                                                },
                                                "max": {
                                                  "type": "string"
                                                },
                                                "price": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "bestoffer": {
                                              "properties": {
                                                "autoacceptprice": {
                                                  "type": "number"
                                                },
                                                "minimumprice": {
                                                  "type": "number"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "buyitnow": {
                                              "type": "number"
                                            },
                                            "country": {
                                              "type": "string"
                                            },
                                            "dispatch": {
                                              "type": [
                                                "object",
                                                "null"
                                              ]
                                            },
                                            "duration": {
                                              "type": "string"
                                            },
                                            "fitmentcatalog": {
                                              "type": "string"
                                            },
                                            "internationalon": {
                                              "type": "string"
                                            },
                                            "listing": {
                                              "type": "string"
                                            },
                                            "location": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedprice": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedpriceexposure": {
                                              "type": "string"
                                            },
                                            "paymentinstructions": {
                                              "type": "string"
                                            },
                                            "paymentmethods": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "paymentprofileid": {
                                              "type": "string"
                                            },
                                            "returnprofileid": {
                                              "type": "string"
                                            },
                                            "returns": {
                                              "properties": {
                                                "description": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "salestaxpercent": {
                                              "type": "number"
                                            },
                                            "scheduletime": {
                                              "type": "string"
                                            },
                                            "secondcategory": {
                                              "type": "string"
                                            },
                                            "shipping": {
                                              "properties": {
                                                "calculated": {
                                                  "properties": {
                                                    "handlingfee": {
                                                      "type": "number"
                                                    },
                                                    "internationalhandlingfee": {
                                                      "type": "number"
                                                    },
                                                    "postalcode": {
                                                      "type": "string"
                                                    },
                                                    "shippingirregular": {
                                                      "type": "boolean"
                                                    },
                                                    "shippingpackage": {
                                                      "type": "string"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "domestic": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "excludes": {
                                                  "items": {
                                                    "type": "string"
                                                  },
                                                  "type": "array"
                                                },
                                                "international": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "5": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "shippingprofileid": {
                                              "type": "string"
                                            },
                                            "shiptolocations": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "siteid": {
                                              "type": "string"
                                            },
                                            "siteshipping": {
                                              "type": "string"
                                            },
                                            "subtitle": {
                                              "type": "string"
                                            },
                                            "taxcategory": {
                                              "type": "string"
                                            },
                                            "template": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "ebay3paymentinstructions": {
                                          "type": "string"
                                        },
                                        "ebay3paymentmethods": {
                                          "type": "string"
                                        },
                                        "ebay3paymentprofileid": {
                                          "type": "string"
                                        },
                                        "ebay3paypalemailaddress": {
                                          "type": "string"
                                        },
                                        "ebay3prefiliteminfo": {
                                          "type": "string"
                                        },
                                        "ebay3price": {
                                          "type": "string"
                                        },
                                        "ebay3private": {
                                          "type": "string"
                                        },
                                        "ebay3promotionendtime": {
                                          "type": "string"
                                        },
                                        "ebay3promotionstarttime": {
                                          "type": "string"
                                        },
                                        "ebay3returnprofileid": {
                                          "type": "string"
                                        },
                                        "ebay3returnsdescription": {
                                          "type": "string"
                                        },
                                        "ebay3returnsrefund": {
                                          "type": "string"
                                        },
                                        "ebay3returnsrestockingfeevalue": {
                                          "type": "string"
                                        },
                                        "ebay3returnsreturnsaccepted": {
                                          "type": "string"
                                        },
                                        "ebay3returnsreturnswithin": {
                                          "type": "string"
                                        },
                                        "ebay3returnsshippingcostpaidby": {
                                          "type": "string"
                                        },
                                        "ebay3salestaxpercent": {
                                          "type": "number"
                                        },
                                        "ebay3scheduletime": {
                                          "type": "string"
                                        },
                                        "ebay3secondcategory": {
                                          "type": "string"
                                        },
                                        "ebay3shippingcalculatedhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay3shippingcalculatedinternationalhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebay3shippingcalculatedpostalcode": {
                                          "type": "string"
                                        },
                                        "ebay3shippingcalculatedshippingirregular": {
                                          "type": "boolean"
                                        },
                                        "ebay3shippingcalculatedshippingpackage": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic1surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic1timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic2surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic2timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic3surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic3timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4expedited": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4freeshipping": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4localpickup": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingdomestic4surcharge": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4timemax": {
                                          "type": "number"
                                        },
                                        "ebay3shippingdomestic4timemin": {
                                          "type": "number"
                                        },
                                        "ebay3shippingexcludes": {
                                          "type": "string"
                                        },
                                        "ebay3shippingglobal": {
                                          "type": "string"
                                        },
                                        "ebay3shippingincludedintax": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational1cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational1location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational1service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational2cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational2location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational2service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational3cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational3location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational3service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational4cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational4location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational4service": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5additionalcost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational5cost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational5cutofftime": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5handling": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5insurancecost": {
                                          "type": "number"
                                        },
                                        "ebay3shippinginternational5location": {
                                          "type": "string"
                                        },
                                        "ebay3shippinginternational5service": {
                                          "type": "string"
                                        },
                                        "ebay3shippingprofileid": {
                                          "type": "string"
                                        },
                                        "ebay3shippingratetabledom": {
                                          "type": "string"
                                        },
                                        "ebay3shippingratetableintl": {
                                          "type": "string"
                                        },
                                        "ebay3shippingtype": {
                                          "type": "string"
                                        },
                                        "ebay3shiptolocations": {
                                          "type": "string"
                                        },
                                        "ebay3siteid": {
                                          "type": "string"
                                        },
                                        "ebay3siteshipping": {
                                          "type": "string"
                                        },
                                        "ebay3skip": {
                                          "type": "string"
                                        },
                                        "ebay3sku": {
                                          "type": "string"
                                        },
                                        "ebay3starttime": {
                                          "type": "string"
                                        },
                                        "ebay3storeid": {
                                          "type": "string"
                                        },
                                        "ebay3storeid2": {
                                          "type": "string"
                                        },
                                        "ebay3subtitle": {
                                          "type": "string"
                                        },
                                        "ebay3taxcategory": {
                                          "type": "string"
                                        },
                                        "ebay3template": {
                                          "type": "string"
                                        },
                                        "ebay3title": {
                                          "type": "string"
                                        },
                                        "ebay3upcnot": {
                                          "type": "string"
                                        },
                                        "ebayadult": {
                                          "type": "string"
                                        },
                                        "ebayauctionsrelist": {
                                          "type": "string"
                                        },
                                        "ebayautopay": {
                                          "type": "string"
                                        },
                                        "ebayautorelistaction": {
                                          "type": "string"
                                        },
                                        "ebayautorelistcount": {
                                          "type": "string"
                                        },
                                        "ebayautorelistduration": {
                                          "type": "string"
                                        },
                                        "ebayautorelistmax": {
                                          "type": "string"
                                        },
                                        "ebayautorelistprice": {
                                          "type": "string"
                                        },
                                        "ebaybestofferautoacceptprice": {
                                          "type": "number"
                                        },
                                        "ebaybestofferenabled": {
                                          "type": "string"
                                        },
                                        "ebaybestofferminimumprice": {
                                          "type": "number"
                                        },
                                        "ebaybuyitnow": {
                                          "type": "number"
                                        },
                                        "ebaycatid": {
                                          "type": "string"
                                        },
                                        "ebaycountry": {
                                          "type": "string"
                                        },
                                        "ebaycurrency": {
                                          "type": "string"
                                        },
                                        "ebaydescription": {
                                          "type": "string"
                                        },
                                        "ebaydispatch": {
                                          "type": "string"
                                        },
                                        "ebayduration": {
                                          "type": "string"
                                        },
                                        "ebayendtime": {
                                          "type": "string"
                                        },
                                        "ebayepid": {
                                          "type": "string"
                                        },
                                        "ebayfitmentcatalog": {
                                          "type": "string"
                                        },
                                        "ebaygetitfast": {
                                          "type": "string"
                                        },
                                        "ebayholidayreturn": {
                                          "type": "string"
                                        },
                                        "ebayid": {
                                          "type": "string"
                                        },
                                        "ebayinternationalon": {
                                          "type": "string"
                                        },
                                        "ebayitemspecificsmapprice": {
                                          "type": "string"
                                        },
                                        "ebayitemspecificswarranty": {
                                          "type": "string"
                                        },
                                        "ebayktype": {
                                          "type": "string"
                                        },
                                        "ebaylisting": {
                                          "type": "string"
                                        },
                                        "ebaylocation": {
                                          "type": "string"
                                        },
                                        "ebayminimumadvertisedprice": {
                                          "type": "string"
                                        },
                                        "ebayminimumadvertisedpriceexposure": {
                                          "type": "string"
                                        },
                                        "ebayoptions": {
                                          "properties": {
                                            "autorelist": {
                                              "properties": {
                                                "action": {
                                                  "type": "string"
                                                },
                                                "count": {
                                                  "type": "string"
                                                },
                                                "duration": {
                                                  "type": "string"
                                                },
                                                "max": {
                                                  "type": "string"
                                                },
                                                "price": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "bestoffer": {
                                              "properties": {
                                                "autoacceptprice": {
                                                  "type": "number"
                                                },
                                                "minimumprice": {
                                                  "type": "number"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "buyitnow": {
                                              "type": "number"
                                            },
                                            "country": {
                                              "type": "string"
                                            },
                                            "dispatch": {
                                              "type": [
                                                "object",
                                                "null"
                                              ]
                                            },
                                            "duration": {
                                              "type": "string"
                                            },
                                            "fitmentcatalog": {
                                              "type": "string"
                                            },
                                            "internationalon": {
                                              "type": "string"
                                            },
                                            "itemspecifics": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "listing": {
                                              "type": "string"
                                            },
                                            "location": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedprice": {
                                              "type": "string"
                                            },
                                            "minimumadvertisedpriceexposure": {
                                              "type": "string"
                                            },
                                            "paymentinstructions": {
                                              "type": "string"
                                            },
                                            "paymentmethods": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "paymentprofileid": {
                                              "type": "string"
                                            },
                                            "returnprofileid": {
                                              "type": "string"
                                            },
                                            "returns": {
                                              "properties": {
                                                "description": {
                                                  "type": "string"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "salestaxpercent": {
                                              "type": "number"
                                            },
                                            "scheduletime": {
                                              "type": "string"
                                            },
                                            "secondcategory": {
                                              "type": "string"
                                            },
                                            "shipping": {
                                              "properties": {
                                                "calculated": {
                                                  "properties": {
                                                    "handlingfee": {
                                                      "type": "number"
                                                    },
                                                    "internationalhandlingfee": {
                                                      "type": "number"
                                                    },
                                                    "postalcode": {
                                                      "type": "string"
                                                    },
                                                    "shippingirregular": {
                                                      "type": "boolean"
                                                    },
                                                    "shippingpackage": {
                                                      "type": "string"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "domestic": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        },
                                                        "surcharge": {
                                                          "type": "number"
                                                        },
                                                        "timemax": {
                                                          "type": "number"
                                                        },
                                                        "timemin": {
                                                          "type": "number"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                },
                                                "excludes": {
                                                  "items": {
                                                    "type": "string"
                                                  },
                                                  "type": "array"
                                                },
                                                "international": {
                                                  "properties": {
                                                    "1": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "2": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "3": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "4": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    },
                                                    "5": {
                                                      "properties": {
                                                        "additionalcost": {
                                                          "type": "number"
                                                        },
                                                        "cost": {
                                                          "type": "number"
                                                        },
                                                        "insurancecost": {
                                                          "type": "number"
                                                        },
                                                        "location": {
                                                          "type": "string"
                                                        },
                                                        "service": {
                                                          "type": "string"
                                                        }
                                                      },
                                                      "type": "object"
                                                    }
                                                  },
                                                  "type": "object"
                                                }
                                              },
                                              "type": "object"
                                            },
                                            "shippingprofileid": {
                                              "type": "string"
                                            },
                                            "shiptolocations": {
                                              "items": {
                                                "type": "string"
                                              },
                                              "type": "array"
                                            },
                                            "siteid": {
                                              "type": "string"
                                            },
                                            "siteshipping": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "subtitle": {
                                              "type": "string"
                                            },
                                            "taxcategory": {
                                              "type": "string"
                                            },
                                            "template": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "ebaypaymentinstructions": {
                                          "type": "string"
                                        },
                                        "ebaypaymentmethods": {
                                          "type": "string"
                                        },
                                        "ebaypaymentprofileid": {
                                          "type": "string"
                                        },
                                        "ebaypaypalemailaddress": {
                                          "type": "string"
                                        },
                                        "ebayprefiliteminfo": {
                                          "type": "string"
                                        },
                                        "ebayprice": {
                                          "type": "string"
                                        },
                                        "ebayprivate": {
                                          "type": "string"
                                        },
                                        "ebayproductid": {
                                          "type": "string"
                                        },
                                        "ebaypromotionendtime": {
                                          "type": "string"
                                        },
                                        "ebaypromotionstarttime": {
                                          "type": "string"
                                        },
                                        "ebayreturnprofileid": {
                                          "type": "string"
                                        },
                                        "ebayreturnsdescription": {
                                          "type": "string"
                                        },
                                        "ebayreturnsrefund": {
                                          "type": "string"
                                        },
                                        "ebayreturnsrestockingfeevalue": {
                                          "type": "string"
                                        },
                                        "ebayreturnsreturnsaccepted": {
                                          "type": "string"
                                        },
                                        "ebayreturnsreturnswithin": {
                                          "type": "string"
                                        },
                                        "ebayreturnsshippingcostpaidby": {
                                          "type": "string"
                                        },
                                        "ebaysalestaxpercent": {
                                          "type": "number"
                                        },
                                        "ebayscheduletime": {
                                          "type": "string"
                                        },
                                        "ebaysecondcategory": {
                                          "type": "string"
                                        },
                                        "ebayshippingcalculatedhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebayshippingcalculatedinternationalhandlingfee": {
                                          "type": "number"
                                        },
                                        "ebayshippingcalculatedpostalcode": {
                                          "type": "string"
                                        },
                                        "ebayshippingcalculatedshippingirregular": {
                                          "type": "boolean"
                                        },
                                        "ebayshippingcalculatedshippingpackage": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic1surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic1timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic2surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic2timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic3surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic3timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4cost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4expedited": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4freeshipping": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4handling": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4localpickup": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4service": {
                                          "type": "string"
                                        },
                                        "ebayshippingdomestic4surcharge": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4timemax": {
                                          "type": "number"
                                        },
                                        "ebayshippingdomestic4timemin": {
                                          "type": "number"
                                        },
                                        "ebayshippingexcludes": {
                                          "type": "string"
                                        },
                                        "ebayshippingglobal": {
                                          "type": "string"
                                        },
                                        "ebayshippingincludedintax": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational1cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational1cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational1location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational1service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational2cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational2cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational2location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational2service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational3cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational3cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational3location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational3service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational4cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational4cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational4location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational4service": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5additionalcost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational5cost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational5cutofftime": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5handling": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5insurancecost": {
                                          "type": "number"
                                        },
                                        "ebayshippinginternational5location": {
                                          "type": "string"
                                        },
                                        "ebayshippinginternational5service": {
                                          "type": "string"
                                        },
                                        "ebayshippingprofileid": {
                                          "type": "string"
                                        },
                                        "ebayshippingratetabledom": {
                                          "type": "string"
                                        },
                                        "ebayshippingratetableintl": {
                                          "type": "string"
                                        },
                                        "ebayshippingtype": {
                                          "type": "string"
                                        },
                                        "ebayshiptolocations": {
                                          "type": "string"
                                        },
                                        "ebaysiteid": {
                                          "type": "string"
                                        },
                                        "ebaysiteshipping": {
                                          "type": "string"
                                        },
                                        "ebayskip": {
                                          "type": "string"
                                        },
                                        "ebaysku": {
                                          "type": "string"
                                        },
                                        "ebaystarttime": {
                                          "type": "string"
                                        },
                                        "ebaystoreid": {
                                          "type": "string"
                                        },
                                        "ebaystoreid2": {
                                          "type": "string"
                                        },
                                        "ebaysubtitle": {
                                          "type": "string"
                                        },
                                        "ebaytaxcategory": {
                                          "type": "string"
                                        },
                                        "ebaytemplate": {
                                          "type": "string"
                                        },
                                        "ebaytitle": {
                                          "type": "string"
                                        },
                                        "ebayupcnot": {
                                          "type": "string"
                                        },
                                        "etsycategoryid": {
                                          "type": "string"
                                        },
                                        "etsydescription": {
                                          "type": "string"
                                        },
                                        "etsyiscustomizable": {
                                          "type": "string"
                                        },
                                        "etsyissupply": {
                                          "type": "string"
                                        },
                                        "etsylistingid": {
                                          "type": "string"
                                        },
                                        "etsymaterials": {
                                          "type": "string"
                                        },
                                        "etsynontaxable": {
                                          "type": "string"
                                        },
                                        "etsyoccasion": {
                                          "type": "string"
                                        },
                                        "etsyoptions": {
                                          "properties": {
                                            "category_id": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "is_customizable": {
                                              "type": "string"
                                            },
                                            "is_supply": {
                                              "type": "string"
                                            },
                                            "materials": {
                                              "type": "string"
                                            },
                                            "non_taxable": {
                                              "type": "string"
                                            },
                                            "occasion": {
                                              "type": "string"
                                            },
                                            "opts_listing_id": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "recipient": {
                                              "type": "string"
                                            },
                                            "shipping_template_id": {
                                              "type": "string"
                                            },
                                            "shop_section_id": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "state": {
                                              "type": "string"
                                            },
                                            "title": {
                                              "type": "string"
                                            },
                                            "variant_keys": {
                                              "type": "string"
                                            },
                                            "when_made": {
                                              "type": "string"
                                            },
                                            "who_made": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "etsyoptslistingid": {
                                          "type": "string"
                                        },
                                        "etsyprice": {
                                          "type": "string"
                                        },
                                        "etsyrecipient": {
                                          "type": "string"
                                        },
                                        "etsyshippingtemplateid": {
                                          "type": "string"
                                        },
                                        "etsyshopsectionid": {
                                          "type": "string"
                                        },
                                        "etsyskip": {
                                          "type": "string"
                                        },
                                        "etsystate": {
                                          "type": "string"
                                        },
                                        "etsytitle": {
                                          "type": "string"
                                        },
                                        "etsyvariantkeys": {
                                          "type": "string"
                                        },
                                        "etsywhenmade": {
                                          "type": "string"
                                        },
                                        "etsywhomade": {
                                          "type": "string"
                                        },
                                        "exportlabel": {
                                          "type": "string"
                                        },
                                        "featured": {
                                          "type": "string"
                                        },
                                        "flavor": {
                                          "type": "string"
                                        },
                                        "floormatlogo": {
                                          "type": "string"
                                        },
                                        "fulfillmentlatency": {
                                          "type": "string"
                                        },
                                        "galleryuri": {
                                          "type": "string"
                                        },
                                        "geolocation": {
                                          "type": "string"
                                        },
                                        "googlecategory": {
                                          "type": "string"
                                        },
                                        "googleshopping": {
                                          "type": "string"
                                        },
                                        "googleshopurl": {
                                          "type": "string"
                                        },
                                        "guid": {
                                          "type": "string"
                                        },
                                        "guidad": {
                                          "type": "string"
                                        },
                                        "handlingfee": {
                                          "type": "string"
                                        },
                                        "hosierysize": {
                                          "type": "string"
                                        },
                                        "htmltitle": {
                                          "type": "string"
                                        },
                                        "id": {
                                          "type": "string"
                                        },
                                        "importfield": {
                                          "type": "string"
                                        },
                                        "inseam": {
                                          "type": "string"
                                        },
                                        "internationalshipping1": {
                                          "type": "string"
                                        },
                                        "intimatessleepsizewomens": {
                                          "type": "string"
                                        },
                                        "isbn": {
                                          "type": "string"
                                        },
                                        "iskit": {
                                          "type": "string"
                                        },
                                        "iskit_calculated_cost": {
                                          "type": "boolean"
                                        },
                                        "iskit_calculated_price": {
                                          "type": "boolean"
                                        },
                                        "jacketlength": {
                                          "type": "string"
                                        },
                                        "jacketsize": {
                                          "type": "string"
                                        },
                                        "keywords": {
                                          "type": "string"
                                        },
                                        "longdescription": {
                                          "type": "string"
                                        },
                                        "magento2attributeset": {
                                          "type": "string"
                                        },
                                        "magento2categories": {
                                          "type": "string"
                                        },
                                        "magento2description": {
                                          "type": "string"
                                        },
                                        "magento2listingid": {
                                          "type": "string"
                                        },
                                        "magento2metadescription": {
                                          "type": "string"
                                        },
                                        "magento2metakeyword": {
                                          "type": "string"
                                        },
                                        "magento2metatitle": {
                                          "type": "string"
                                        },
                                        "magento2name": {
                                          "type": "string"
                                        },
                                        "magento2oldlistingid": {
                                          "type": "string"
                                        },
                                        "magento2oldsku": {
                                          "type": "string"
                                        },
                                        "magento2options": {
                                          "properties": {
                                            "attribute_set": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "tax_class_id": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "magento2parentsku": {
                                          "type": "string"
                                        },
                                        "magento2price": {
                                          "type": "string"
                                        },
                                        "magento2shortdescription": {
                                          "type": "string"
                                        },
                                        "magento2skip": {
                                          "type": "string"
                                        },
                                        "magento2sku": {
                                          "type": "string"
                                        },
                                        "magento2storepath": {
                                          "type": "string"
                                        },
                                        "magento2taxclassid": {
                                          "type": "string"
                                        },
                                        "magento2urlkey": {
                                          "type": "string"
                                        },
                                        "magento2urlpath": {
                                          "type": "string"
                                        },
                                        "magentoattributeset": {
                                          "type": "string"
                                        },
                                        "magentocategories": {
                                          "type": "string"
                                        },
                                        "magentodescription": {
                                          "type": "string"
                                        },
                                        "magentolistingid": {
                                          "type": "string"
                                        },
                                        "magentometadescription": {
                                          "type": "string"
                                        },
                                        "magentometakeyword": {
                                          "type": "string"
                                        },
                                        "magentometatitle": {
                                          "type": "string"
                                        },
                                        "magentoname": {
                                          "type": "string"
                                        },
                                        "magentooldlistingid": {
                                          "type": "string"
                                        },
                                        "magentooldsku": {
                                          "type": "string"
                                        },
                                        "magentooptions": {
                                          "properties": {
                                            "attribute_set": {
                                              "type": "string"
                                            },
                                            "categories": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "meta_description": {
                                              "type": "string"
                                            },
                                            "meta_keyword": {
                                              "type": "string"
                                            },
                                            "meta_title": {
                                              "type": "string"
                                            },
                                            "name": {
                                              "type": "string"
                                            },
                                            "old_listing_id": {
                                              "type": "string"
                                            },
                                            "old_sku": {
                                              "type": "string"
                                            },
                                            "parent_sku": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "short_description": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "store_path": {
                                              "type": "string"
                                            },
                                            "tax_class_id": {
                                              "type": "string"
                                            },
                                            "url_key": {
                                              "type": "string"
                                            },
                                            "url_path": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "magentoparentsku": {
                                          "type": "string"
                                        },
                                        "magentoprice": {
                                          "type": "string"
                                        },
                                        "magentoshortdescription": {
                                          "type": "string"
                                        },
                                        "magentoskip": {
                                          "type": "string"
                                        },
                                        "magentosku": {
                                          "type": "string"
                                        },
                                        "magentostorepath": {
                                          "type": "string"
                                        },
                                        "magentotaxclassid": {
                                          "type": "string"
                                        },
                                        "magentourlkey": {
                                          "type": "string"
                                        },
                                        "magentourlpath": {
                                          "type": "string"
                                        },
                                        "manufacturer": {
                                          "type": "string"
                                        },
                                        "manufacturerpartnumber": {
                                          "type": "string"
                                        },
                                        "mapprice": {
                                          "type": "string"
                                        },
                                        "material": {
                                          "type": "string"
                                        },
                                        "maxstock": {
                                          "type": "string"
                                        },
                                        "media1": {
                                          "type": "string"
                                        },
                                        "media10": {
                                          "type": "string"
                                        },
                                        "media10alttext": {
                                          "type": "string"
                                        },
                                        "media11alttext": {
                                          "type": "string"
                                        },
                                        "media1alttext": {
                                          "type": "string"
                                        },
                                        "media2": {
                                          "type": "string"
                                        },
                                        "media2alttext": {
                                          "type": "string"
                                        },
                                        "media3": {
                                          "type": "string"
                                        },
                                        "media3alttext": {
                                          "type": "string"
                                        },
                                        "media4": {
                                          "type": "string"
                                        },
                                        "media4alttext": {
                                          "type": "string"
                                        },
                                        "media5": {
                                          "type": "string"
                                        },
                                        "media5alttext": {
                                          "type": "string"
                                        },
                                        "media6": {
                                          "type": "string"
                                        },
                                        "media6alttext": {
                                          "type": "string"
                                        },
                                        "media7": {
                                          "type": "string"
                                        },
                                        "media7alttext": {
                                          "type": "string"
                                        },
                                        "media8": {
                                          "type": "string"
                                        },
                                        "media8alttext": {
                                          "type": "string"
                                        },
                                        "media9": {
                                          "type": "string"
                                        },
                                        "media9alttext": {
                                          "type": "string"
                                        },
                                        "mediacount": {
                                          "type": "string"
                                        },
                                        "mediax": {
                                          "type": "string"
                                        },
                                        "metadescription": {
                                          "type": "string"
                                        },
                                        "metal": {
                                          "type": "string"
                                        },
                                        "meyersku": {
                                          "type": "string"
                                        },
                                        "meyerstock": {
                                          "type": "string"
                                        },
                                        "minstock": {
                                          "type": "string"
                                        },
                                        "model": {
                                          "type": "string"
                                        },
                                        "modelnumber": {
                                          "type": "string"
                                        },
                                        "mpn": {
                                          "type": "string"
                                        },
                                        "msrp": {
                                          "type": "string"
                                        },
                                        "name": {
                                          "type": "string"
                                        },
                                        "nameofnewfield": {
                                          "type": "string"
                                        },
                                        "newbccffield1": {
                                          "type": "string"
                                        },
                                        "notes": {
                                          "type": "string"
                                        },
                                        "numberofitems": {
                                          "type": "string"
                                        },
                                        "packagequantity": {
                                          "type": "string"
                                        },
                                        "parenturi": {
                                          "type": "string"
                                        },
                                        "pl20160304001": {
                                          "type": "string"
                                        },
                                        "pl20160304003": {
                                          "type": "string"
                                        },
                                        "preexistingcustomarc005": {
                                          "type": "string"
                                        },
                                        "price": {
                                          "type": "string"
                                        },
                                        "productshippingtemplate": {
                                          "type": "string"
                                        },
                                        "producttaxcode": {
                                          "type": "string"
                                        },
                                        "producttype": {
                                          "type": "string"
                                        },
                                        "registeredparameter": {
                                          "type": "string"
                                        },
                                        "releasedate": {
                                          "type": "string"
                                        },
                                        "ringsize": {
                                          "type": "string"
                                        },
                                        "rule": {
                                          "type": "string"
                                        },
                                        "shelfdescription": {
                                          "type": "string"
                                        },
                                        "shipping": {
                                          "type": "string"
                                        },
                                        "shippingadditional": {
                                          "type": "string"
                                        },
                                        "size": {
                                          "type": "string"
                                        },
                                        "sizemens": {
                                          "type": "string"
                                        },
                                        "sizetype": {
                                          "type": "string"
                                        },
                                        "sizewomens": {
                                          "type": "string"
                                        },
                                        "sku": {
                                          "type": "string"
                                        },
                                        "skuvaultbrand": {
                                          "type": "string"
                                        },
                                        "skuvaultclassification": {
                                          "type": "string"
                                        },
                                        "skuvaultcode": {
                                          "type": "string"
                                        },
                                        "skuvaultcost": {
                                          "type": "string"
                                        },
                                        "skuvaultdescription": {
                                          "type": "string"
                                        },
                                        "skuvaultiskit": {
                                          "type": "string"
                                        },
                                        "skuvaultislisted": {
                                          "type": "string"
                                        },
                                        "skuvaultlocationinfo": {
                                          "type": "string"
                                        },
                                        "skuvaultoptions": {
                                          "properties": {
                                            "Brand": {
                                              "type": "string"
                                            },
                                            "Classification": {
                                              "type": "string"
                                            },
                                            "Code": {
                                              "type": "string"
                                            },
                                            "Cost": {
                                              "type": "string"
                                            },
                                            "Description": {
                                              "type": "string"
                                            },
                                            "PartNumber": {
                                              "type": "string"
                                            },
                                            "QuantityAvailable": {
                                              "type": "string"
                                            },
                                            "RetailPrice": {
                                              "type": "string"
                                            },
                                            "SalePrice": {
                                              "type": "string"
                                            },
                                            "Supplier": {
                                              "type": "string"
                                            },
                                            "isListed": {
                                              "type": "string"
                                            },
                                            "iskit": {
                                              "type": "string"
                                            },
                                            "locationInfo": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "skuvaultpartnumber": {
                                          "type": "string"
                                        },
                                        "skuvaultquantityavailable": {
                                          "type": "string"
                                        },
                                        "skuvaultretailprice": {
                                          "type": "string"
                                        },
                                        "skuvaultsaleprice": {
                                          "type": "string"
                                        },
                                        "skuvaultskip": {
                                          "type": "string"
                                        },
                                        "skuvaultsku": {
                                          "type": "string"
                                        },
                                        "skuvaultsupplier": {
                                          "type": "string"
                                        },
                                        "sleevelength": {
                                          "type": "string"
                                        },
                                        "socksize": {
                                          "type": "string"
                                        },
                                        "state": {
                                          "type": "string"
                                        },
                                        "status": {
                                          "type": "string"
                                        },
                                        "stock": {
                                          "type": "string"
                                        },
                                        "style": {
                                          "type": "string"
                                        },
                                        "test": {
                                          "type": "string"
                                        },
                                        "test2": {
                                          "type": "string"
                                        },
                                        "testfield3": {
                                          "type": "string"
                                        },
                                        "testx1": {
                                          "type": "string"
                                        },
                                        "threadcolor": {
                                          "type": "string"
                                        },
                                        "title": {
                                          "type": "string"
                                        },
                                        "total_stock": {
                                          "type": "string"
                                        },
                                        "totalsold": {
                                          "type": "string"
                                        },
                                        "transamericansku": {
                                          "type": "string"
                                        },
                                        "transamericanstock": {
                                          "type": "string"
                                        },
                                        "tx1": {
                                          "type": "string"
                                        },
                                        "tx10": {
                                          "type": "string"
                                        },
                                        "tx11": {
                                          "type": "string"
                                        },
                                        "tx12": {
                                          "type": "string"
                                        },
                                        "tx13": {
                                          "type": "string"
                                        },
                                        "tx3": {
                                          "type": "string"
                                        },
                                        "type": {
                                          "type": "string"
                                        },
                                        "upc": {
                                          "type": "string"
                                        },
                                        "updatenotes": {
                                          "type": "string"
                                        },
                                        "updatereason": {
                                          "type": "string"
                                        },
                                        "uri": {
                                          "type": "string"
                                        },
                                        "usertype": {
                                          "type": "string"
                                        },
                                        "userupc": {
                                          "type": "string"
                                        },
                                        "usshoesizemens": {
                                          "type": "string"
                                        },
                                        "usshoesizewomens": {
                                          "type": "string"
                                        },
                                        "variationtheme": {
                                          "type": "string"
                                        },
                                        "vendorstock": {
                                          "type": "string"
                                        },
                                        "waistsize": {
                                          "type": "string"
                                        },
                                        "walmartcategory": {
                                          "type": "string"
                                        },
                                        "walmartdescription": {
                                          "type": "string"
                                        },
                                        "walmartenqueued": {
                                          "type": "string"
                                        },
                                        "walmartinprogress": {
                                          "type": "string"
                                        },
                                        "walmartislisted": {
                                          "type": "string"
                                        },
                                        "walmartmedia": {
                                          "type": "string"
                                        },
                                        "walmartname": {
                                          "type": "string"
                                        },
                                        "walmartoptions": {
                                          "properties": {
                                            "category": {
                                              "type": "string"
                                            },
                                            "description": {
                                              "type": "string"
                                            },
                                            "enqueued": {
                                              "type": "string"
                                            },
                                            "media": {
                                              "type": "string"
                                            },
                                            "name": {
                                              "type": "string"
                                            },
                                            "price": {
                                              "type": "string"
                                            },
                                            "skip": {
                                              "type": "string"
                                            },
                                            "url": {
                                              "type": "string"
                                            }
                                          },
                                          "type": "object"
                                        },
                                        "walmartprice": {
                                          "type": "string"
                                        },
                                        "walmartskip": {
                                          "type": "string"
                                        },
                                        "walmartsku": {
                                          "type": "string"
                                        },
                                        "walmartstatus": {
                                          "type": "string"
                                        },
                                        "walmarturl": {
                                          "type": "string"
                                        },
                                        "warranty": {
                                          "type": "string"
                                        },
                                        "weight": {
                                          "type": "string"
                                        },
                                        "wmcategory": {
                                          "type": "string"
                                        },
                                        "wmtaxcode": {
                                          "type": "string"
                                        },
                                        "working": {
                                          "type": "string"
                                        }
                                      },
                                      "type": "object"
                                    }
                                  },
                                  "type": "object"
                                },
                                "itemid": {
                                  "type": "string"
                                },
                                "media": {
                                  "type": "string"
                                },
                                "price": {
                                  "type": "string"
                                },
                                "quantity": {
                                  "type": "string"
                                },
                                "sku": {
                                  "type": "string"
                                },
                                "source": {
                                  "type": "string"
                                },
                                "title": {
                                  "type": "string"
                                },
                                "weight": {
                                  "type": "string"
                                }
                              },
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "itemtotal": {
                            "type": "string"
                          },
                          "meta": {
                            "items": {
                              "type": "string"
                            },
                            "type": "array"
                          },
                          "oid": {
                            "type": "string"
                          },
                          "oidconsolidate": {
                            "type": "string"
                          },
                          "order": {
                            "type": "string"
                          },
                          "ordernumber": {
                            "type": "string"
                          },
                          "payment": {
                            "type": "string"
                          },
                          "paymentdate": {
                            "type": "string"
                          },
                          "paymentstatus": {
                            "type": "string"
                          },
                          "refunds": {
                            "items": {
                              "type": "string"
                            },
                            "type": "array"
                          },
                          "shipments": {
                            "items": {
                              "properties": {
                                "shipcarrier": {
                                  "type": "string"
                                },
                                "shipcost": {
                                  "type": "string"
                                },
                                "shipdate": {
                                  "type": "string"
                                },
                                "shipdetails": {
                                  "items": {
                                    "type": "string"
                                  },
                                  "type": "array"
                                },
                                "shipid": {
                                  "type": "string"
                                },
                                "shipservice": {
                                  "type": "string"
                                },
                                "shiptracking": {
                                  "type": "string"
                                },
                                "shipuser": {
                                  "type": "string"
                                }
                              },
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "shipping": {
                            "properties": {
                              "city": {
                                "type": "string"
                              },
                              "company": {
                                "type": "string"
                              },
                              "country": {
                                "type": "string"
                              },
                              "firstname": {
                                "type": "string"
                              },
                              "lastname": {
                                "type": "string"
                              },
                              "middlename": {
                                "type": "string"
                              },
                              "phone": {
                                "type": "string"
                              },
                              "phone2": {
                                "type": "string"
                              },
                              "postalcode": {
                                "type": "string"
                              },
                              "stateprovince": {
                                "type": "string"
                              },
                              "street1": {
                                "type": "string"
                              },
                              "street2": {
                                "type": "string"
                              },
                              "street3": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "shippingcarrier": {
                            "type": "string"
                          },
                          "shippingservice": {
                            "type": "string"
                          },
                          "shippingstatus": {
                            "type": "string"
                          },
                          "shippingtotal": {
                            "type": "string"
                          },
                          "status": {
                            "type": "string"
                          },
                          "taxtotal": {
                            "type": "string"
                          },
                          "total": {
                            "type": "string"
                          },
                          "transactionid": {
                            "type": "string"
                          }
                        },
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "count": "1",
                      "orders": [
                        {
                          "account": null,
                          "archived": "0",
                          "billing": {
                            "city": "New York",
                            "company": "",
                            "country": "US",
                            "firstname": "Test",
                            "lastname": "User",
                            "middlename": "",
                            "phone": "877-773-6755",
                            "phone2": "",
                            "postalcode": "10010",
                            "stateprovince": "NY",
                            "street1": "115 E 23rd St",
                            "street2": "FL 3",
                            "street3": ""
                          },
                          "channel": "custom",
                          "comments": "Please ship all packages in one box.",
                          "correlationid": "",
                          "currency": "USD",
                          "date": "2018-06-27 13:38:25",
                          "dateupdated": "2018-06-27 13:38:25",
                          "dateupdatedutc": "2018-06-27 13:38:25",
                          "dateutc": "2018-06-27 13:38:25",
                          "details": {
                            "currency": [
                              "USD"
                            ],
                            "deliver-by-earliest": [
                              "2018-07-03 07:00:00"
                            ],
                            "deliver-by-latest": [
                              "2018-07-07 06:59:59"
                            ],
                            "handling": [
                              0
                            ],
                            "itemfee": [
                              "1.58"
                            ],
                            "ship-by-earliest": [
                              "2018-06-28 07:00:00"
                            ],
                            "ship-by-latest": [
                              "2018-06-29 06:59:59"
                            ],
                            "shipping": [
                              0
                            ],
                            "shipservice": [
                              "Standard"
                            ],
                            "shiptax": [
                              0
                            ],
                            "tax": [
                              0
                            ]
                          },
                          "discountcode": "",
                          "discounttotal": "0.00",
                          "email": "demo@suredone.com",
                          "gift": "0",
                          "handlingtotal": "0.00",
                          "instance": "0",
                          "internalnotes": {
                            "2018-08-11T16:22:49": "This is a great customer"
                          },
                          "ip": "",
                          "items": [
                            {
                              "boxheight": "0.50",
                              "boxlength": "1.00",
                              "boxwidth": "2.50",
                              "dimweight": "1.56",
                              "itemdetails": {
                                "order-item-id": "30090115962746",
                                "product": {
                                  "tags": "",
                                  "active": "0",
                                  "actualcost": "219.99",
                                  "amzn2asin": "",
                                  "amzn2category": "0",
                                  "amzn2categorypath": "",
                                  "amzn2currency": "",
                                  "amzn2fba": "",
                                  "amzn2itemtype": "0",
                                  "amzn2options": null,
                                  "amzn2parentbrand": "",
                                  "amzn2parentbullets": "",
                                  "amzn2parentdescription": "",
                                  "amzn2parentimage": "",
                                  "amzn2parenttitle": "",
                                  "amzn2price": "0.00",
                                  "amzn2search": "",
                                  "amzn2skip": "",
                                  "amzn2sku": "",
                                  "amzn2status": "",
                                  "amzn2title": "",
                                  "amzn3asin": "",
                                  "amzn3category": "0",
                                  "amzn3categorypath": "",
                                  "amzn3currency": "",
                                  "amzn3fba": "",
                                  "amzn3itemtype": "0",
                                  "amzn3options": null,
                                  "amzn3parentbrand": "",
                                  "amzn3parentbullets": "",
                                  "amzn3parentdescription": "",
                                  "amzn3parentimage": "",
                                  "amzn3parenttitle": "",
                                  "amzn3price": "0.00",
                                  "amzn3search": "",
                                  "amzn3skip": "",
                                  "amzn3sku": "",
                                  "amzn3status": "",
                                  "amzn3title": "",
                                  "amznasin": "",
                                  "amzncategory": "0",
                                  "amzncategorypath": "",
                                  "amzncurrency": "",
                                  "amznfba": "{\"status\":\"switch_off\",\"fulfillment_center\":\"\"}",
                                  "amznitemtype": "0",
                                  "amznoptions": {
                                    "categorypath": "",
                                    "parentbrand": "",
                                    "parentbullets": "",
                                    "parentdescription": "",
                                    "parentimage": "",
                                    "parenttitle": "",
                                    "skip": "alwaysSend"
                                  },
                                  "amznparentbrand": "",
                                  "amznparentbullets": "",
                                  "amznparentdescription": "",
                                  "amznparentimage": "",
                                  "amznparenttitle": "",
                                  "amznprice": "0.00",
                                  "amznsearch": "",
                                  "amznskip": "alwaysSend",
                                  "amznsku": "",
                                  "amznstatus": "",
                                  "amzntitle": "",
                                  "asset": "",
                                  "atest3": "",
                                  "bandsize": "",
                                  "bccf1": "",
                                  "bccustom1": "",
                                  "bccustom10": "",
                                  "bccustom11": "",
                                  "bccustom12": "",
                                  "bccustom13": "",
                                  "bccustom14": "",
                                  "bccustom15": "",
                                  "bccustom16": "",
                                  "bccustom17": "",
                                  "bccustom2": "",
                                  "bccustom3": "",
                                  "bccustom4": "",
                                  "bccustom5": "",
                                  "bccustom6": "",
                                  "bccustom7": "",
                                  "bccustom8": "",
                                  "bccustom9": "",
                                  "bcf1": "",
                                  "bcnewcf1": "",
                                  "bcnewcf2": "",
                                  "bcnewcf3": "",
                                  "bcnewcf4": "",
                                  "bcnewcf5": "",
                                  "bcnewcf6": "",
                                  "bcnewcf7": "",
                                  "bcnewcfa": "",
                                  "bcnewcfb": "",
                                  "bcnewcfc": "",
                                  "bcnewcfd": "",
                                  "bcnewcfe": "",
                                  "bcnewcff": "",
                                  "bcnewcfg": "",
                                  "bcnewcfh": "",
                                  "bcnewcfi": "",
                                  "bctest1": "",
                                  "bctest2": "",
                                  "bctest3": "",
                                  "bctest4": "",
                                  "bigcommerce2availability": "",
                                  "bigcommerce2availabilitydescription": "",
                                  "bigcommerce2avalaraproducttaxcode": "",
                                  "bigcommerce2binpickingnumber": "",
                                  "bigcommerce2brandid": "",
                                  "bigcommerce2calculatedprice": "",
                                  "bigcommerce2categories": "",
                                  "bigcommerce2configurablefields": "",
                                  "bigcommerce2costprice": "",
                                  "bigcommerce2customfields": "",
                                  "bigcommerce2datecreated": "",
                                  "bigcommerce2datelastimported": "",
                                  "bigcommerce2description": "",
                                  "bigcommerce2discountrules": "",
                                  "bigcommerce2downloads": "",
                                  "bigcommerce2eventdateend": "",
                                  "bigcommerce2eventdatefieldname": "",
                                  "bigcommerce2eventdatestart": "",
                                  "bigcommerce2eventdatetype": "",
                                  "bigcommerce2fixedcostshippingprice": "",
                                  "bigcommerce2images": "",
                                  "bigcommerce2inventorywarninglevel": "",
                                  "bigcommerce2isconditionshown": "",
                                  "bigcommerce2isfeatured": "",
                                  "bigcommerce2isfreeshipping": "",
                                  "bigcommerce2isopengraphthumbnail": "",
                                  "bigcommerce2ispreorderonly": "",
                                  "bigcommerce2ispricehidden": "",
                                  "bigcommerce2keywordfilter": "",
                                  "bigcommerce2layoutfile": "",
                                  "bigcommerce2listingid": "",
                                  "bigcommerce2manageproductrules": "",
                                  "bigcommerce2media": "",
                                  "bigcommerce2metadescription": "",
                                  "bigcommerce2metakeywords": "",
                                  "bigcommerce2myobassetaccount": "",
                                  "bigcommerce2myobexpenseaccount": "",
                                  "bigcommerce2myobincomeaccount": "",
                                  "bigcommerce2name": "",
                                  "bigcommerce2opengraphdescription": "",
                                  "bigcommerce2opengraphtitle": "",
                                  "bigcommerce2opengraphtype": "",
                                  "bigcommerce2options": null,
                                  "bigcommerce2optionsetdisplay": "",
                                  "bigcommerce2optionsetid": "",
                                  "bigcommerce2orderquantitymaximum": "",
                                  "bigcommerce2orderquantityminimum": "",
                                  "bigcommerce2pagetitle": "",
                                  "bigcommerce2path": "",
                                  "bigcommerce2peachtreeglaccount": "",
                                  "bigcommerce2preordermessage": "",
                                  "bigcommerce2preorderreleasedate": "",
                                  "bigcommerce2price": "",
                                  "bigcommerce2pricehiddenlabel": "",
                                  "bigcommerce2productrule": "",
                                  "bigcommerce2ratingcount": "",
                                  "bigcommerce2ratingtotal": "",
                                  "bigcommerce2relatedproducts": "",
                                  "bigcommerce2retailprice": "",
                                  "bigcommerce2saleprice": "",
                                  "bigcommerce2searchkeywords": "",
                                  "bigcommerce2skip": "",
                                  "bigcommerce2sku": "",
                                  "bigcommerce2skuid": "",
                                  "bigcommerce2taxclassid": "",
                                  "bigcommerce2totalsold": "",
                                  "bigcommerce2type": "",
                                  "bigcommerce2url": "",
                                  "bigcommerce2videos": "",
                                  "bigcommerce2viewcount": "",
                                  "bigcommerce2warranty": "",
                                  "bigcommerceavailability": "",
                                  "bigcommerceavailabilitydescription": "",
                                  "bigcommerceavalaraproducttaxcode": "",
                                  "bigcommercebinpickingnumber": "",
                                  "bigcommercebrandid": "",
                                  "bigcommercecalculatedprice": "",
                                  "bigcommercecategories": "",
                                  "bigcommerceconfigurablefields": "",
                                  "bigcommercecostprice": "",
                                  "bigcommercecustomfields": "[]",
                                  "bigcommercedatecreated": "",
                                  "bigcommercedatelastimported": "",
                                  "bigcommercedescription": "",
                                  "bigcommercediscountrules": "",
                                  "bigcommercedownloads": "",
                                  "bigcommerceeventdateend": "",
                                  "bigcommerceeventdatefieldname": "",
                                  "bigcommerceeventdatestart": "",
                                  "bigcommerceeventdatetype": "",
                                  "bigcommercefixedcostshippingprice": "",
                                  "bigcommerceimages": "",
                                  "bigcommerceinventorywarninglevel": "",
                                  "bigcommerceisconditionshown": "",
                                  "bigcommerceisfeatured": "",
                                  "bigcommerceisfreeshipping": "",
                                  "bigcommerceisopengraphthumbnail": "",
                                  "bigcommerceispreorderonly": "",
                                  "bigcommerceispricehidden": "",
                                  "bigcommercekeywordfilter": "",
                                  "bigcommercelayoutfile": "",
                                  "bigcommercelistingid": "",
                                  "bigcommercemanageproductrules": "",
                                  "bigcommercemedia": "",
                                  "bigcommercemetadescription": "",
                                  "bigcommercemetakeywords": "",
                                  "bigcommercemyobassetaccount": "",
                                  "bigcommercemyobexpenseaccount": "",
                                  "bigcommercemyobincomeaccount": "",
                                  "bigcommercename": "",
                                  "bigcommerceopengraphdescription": "",
                                  "bigcommerceopengraphtitle": "",
                                  "bigcommerceopengraphtype": "",
                                  "bigcommerceoptions": {
                                    "availability": "",
                                    "availability_description": "",
                                    "avalara_product_tax_code": "",
                                    "bin_picking_number": "",
                                    "brand_id": "",
                                    "calculated_price": "",
                                    "categories": "",
                                    "configurable_fields": "",
                                    "cost_price": "",
                                    "custom_fields": [],
                                    "date_created": "",
                                    "date_last_imported": "",
                                    "description": "",
                                    "discount_rules": "",
                                    "downloads": "",
                                    "event_date_end": "",
                                    "event_date_field_name": "",
                                    "event_date_start": "",
                                    "event_date_type": "",
                                    "fixed_cost_shipping_price": "",
                                    "images": "",
                                    "inventory_warning_level": "",
                                    "is_condition_shown": "",
                                    "is_featured": "",
                                    "is_free_shipping": "",
                                    "is_open_graph_thumbnail": "",
                                    "is_preorder_only": "",
                                    "is_price_hidden": "",
                                    "keyword_filter": "",
                                    "layout_file": "",
                                    "manage_product_rules": "",
                                    "media": "",
                                    "meta_description": "",
                                    "meta_keywords": "",
                                    "myob_asset_account": "",
                                    "myob_expense_account": "",
                                    "myob_income_account": "",
                                    "name": "",
                                    "open_graph_description": "",
                                    "open_graph_title": "",
                                    "open_graph_type": "",
                                    "option_set_display": "",
                                    "option_set_id": "",
                                    "order_quantity_maximum": "",
                                    "order_quantity_minimum": "",
                                    "page_title": "",
                                    "path": "https://store-988ysg.mybigcommerce.com",
                                    "peachtree_gl_account": "",
                                    "preorder_message": "",
                                    "preorder_release_date": "",
                                    "price": "",
                                    "price_hidden_label": "",
                                    "product_rule": "",
                                    "rating_count": "",
                                    "rating_total": "",
                                    "related_products": "",
                                    "retail_price": "",
                                    "sale_price": "",
                                    "search_keywords": "",
                                    "skip": "",
                                    "sku_id": "",
                                    "tax_class_id": "",
                                    "total_sold": "",
                                    "type": "",
                                    "url": "/products/",
                                    "videos": "",
                                    "view_count": "",
                                    "warranty": ""
                                  },
                                  "bigcommerceoptionsetdisplay": "",
                                  "bigcommerceoptionsetid": "",
                                  "bigcommerceorderquantitymaximum": "",
                                  "bigcommerceorderquantityminimum": "",
                                  "bigcommercepagetitle": "",
                                  "bigcommercepath": "https://store-988ysg.mybigcommerce.com",
                                  "bigcommercepeachtreeglaccount": "",
                                  "bigcommercepreordermessage": "",
                                  "bigcommercepreorderreleasedate": "",
                                  "bigcommerceprice": "",
                                  "bigcommercepricehiddenlabel": "",
                                  "bigcommerceproductrule": "",
                                  "bigcommerceratingcount": "",
                                  "bigcommerceratingtotal": "",
                                  "bigcommercerelatedproducts": "",
                                  "bigcommerceretailprice": "",
                                  "bigcommercesaleprice": "",
                                  "bigcommercesearchkeywords": "",
                                  "bigcommerceskip": "",
                                  "bigcommercesku": "U8800",
                                  "bigcommerceskuid": "",
                                  "bigcommercetaxclassid": "",
                                  "bigcommercetotalsold": "",
                                  "bigcommercetype": "",
                                  "bigcommerceurl": "/products/",
                                  "bigcommercevideos": "",
                                  "bigcommerceviewcount": "",
                                  "bigcommercewarranty": "",
                                  "boing": "",
                                  "bottomssizemens": "",
                                  "bottomssizewomens": "",
                                  "boxheight": "0.50",
                                  "boxlength": "1.00",
                                  "boxweight": "0.75",
                                  "boxwidth": "2.50",
                                  "brand": "AT&T",
                                  "bulletpoint1": "",
                                  "bulletpoint2": "",
                                  "bulletpoint3": "",
                                  "bulletpoint4": "",
                                  "bulletpoint5": "",
                                  "cache": "",
                                  "category1": "mobile phones",
                                  "category2": "android",
                                  "category3": "",
                                  "category4": "",
                                  "category5": "",
                                  "cf010301004": "",
                                  "cf020301004": "",
                                  "cf030301004": "",
                                  "cf040301004": "",
                                  "cf1": "",
                                  "cf2": "",
                                  "cf20160223001": "",
                                  "cf20160223002": "",
                                  "cf20160223004": "",
                                  "cf20160223005": "",
                                  "cf20160223007": "",
                                  "cf20160223008": "",
                                  "cf20160223009": "",
                                  "cf20160223010": "",
                                  "cf20160223020": "",
                                  "cf20160223021": "",
                                  "cf3": "",
                                  "cf4": "",
                                  "cf5": "",
                                  "cf6": "",
                                  "cf7": "",
                                  "cf8": "",
                                  "cf9": "",
                                  "cfdn1": "",
                                  "cfon1": "",
                                  "click": "",
                                  "clubtype": "",
                                  "color": "Black",
                                  "colors": "",
                                  "condition": "New",
                                  "content": "",
                                  "cost": "0.00",
                                  "countryregionofmanufactur": "",
                                  "crazynewstyle": "",
                                  "cupsize": "",
                                  "customname": "",
                                  "cut": "",
                                  "date": "2013-07-29 15:06:20",
                                  "datesold": "2018-07-18 01:11:40",
                                  "dateupdated": "2018-08-05 00:38:50",
                                  "deeey": "",
                                  "department": "",
                                  "description": "Android 2.2 operating system4G speedWi-FiMobile hotspot for up to 5users3.8\" WGA touch screen Requires a minimum data service starting at $15/month Early terminationfees will be prorated, starting at $325 minus $10 for each full month of service commitmentcompleted.",
                                  "dimweight": "1.56",
                                  "discountprice": "0.00",
                                  "domain": "",
                                  "dormanstock": "0",
                                  "dressshirtsize": "",
                                  "ean": "",
                                  "ebay2adult": "",
                                  "ebay2auctionsrelist": "",
                                  "ebay2autopay": "",
                                  "ebay2autorelistaction": "",
                                  "ebay2autorelistcount": "",
                                  "ebay2autorelistduration": "",
                                  "ebay2autorelistmax": "",
                                  "ebay2autorelistprice": "",
                                  "ebay2bestofferautoacceptprice": 0,
                                  "ebay2bestofferenabled": "",
                                  "ebay2bestofferminimumprice": 0,
                                  "ebay2buyitnow": 0,
                                  "ebay2catid": "0",
                                  "ebay2country": "",
                                  "ebay2currency": "",
                                  "ebay2description": "",
                                  "ebay2dispatch": "",
                                  "ebay2duration": "",
                                  "ebay2endtime": "",
                                  "ebay2fitmentcatalog": "",
                                  "ebay2getitfast": "",
                                  "ebay2holidayreturn": "",
                                  "ebay2id": "0",
                                  "ebay2internationalon": "",
                                  "ebay2listing": "",
                                  "ebay2location": "",
                                  "ebay2minimumadvertisedprice": "",
                                  "ebay2minimumadvertisedpriceexposure": "",
                                  "ebay2options": {
                                    "autorelist": {
                                      "action": "",
                                      "count": "",
                                      "duration": "",
                                      "max": "",
                                      "price": ""
                                    },
                                    "bestoffer": {
                                      "autoacceptprice": 0,
                                      "minimumprice": 0
                                    },
                                    "buyitnow": 0,
                                    "country": "",
                                    "dispatch": null,
                                    "duration": "",
                                    "fitmentcatalog": "",
                                    "internationalon": "",
                                    "listing": "",
                                    "location": "",
                                    "minimumadvertisedprice": "",
                                    "minimumadvertisedpriceexposure": "",
                                    "paymentinstructions": "",
                                    "paymentmethods": [
                                      ""
                                    ],
                                    "paymentprofileid": "",
                                    "returnprofileid": "",
                                    "returns": {
                                      "description": ""
                                    },
                                    "salestaxpercent": 0,
                                    "scheduletime": "",
                                    "secondcategory": "",
                                    "shipping": {
                                      "calculated": {
                                        "handlingfee": 0,
                                        "internationalhandlingfee": 0,
                                        "postalcode": "",
                                        "shippingirregular": false,
                                        "shippingpackage": ""
                                      },
                                      "domestic": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        }
                                      },
                                      "excludes": [
                                        ""
                                      ],
                                      "international": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "5": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        }
                                      }
                                    },
                                    "shippingprofileid": "",
                                    "shiptolocations": [
                                      ""
                                    ],
                                    "siteid": "",
                                    "siteshipping": "",
                                    "skip": "alwaysSkip",
                                    "subtitle": "",
                                    "taxcategory": "",
                                    "template": ""
                                  },
                                  "ebay2paymentinstructions": "",
                                  "ebay2paymentmethods": "",
                                  "ebay2paymentprofileid": "",
                                  "ebay2paypalemailaddress": "",
                                  "ebay2prefiliteminfo": "",
                                  "ebay2price": "0.00",
                                  "ebay2private": "",
                                  "ebay2promotionendtime": "",
                                  "ebay2promotionstarttime": "",
                                  "ebay2returnprofileid": "",
                                  "ebay2returnsdescription": "",
                                  "ebay2returnsrefund": "",
                                  "ebay2returnsrestockingfeevalue": "",
                                  "ebay2returnsreturnsaccepted": "",
                                  "ebay2returnsreturnswithin": "",
                                  "ebay2returnsshippingcostpaidby": "",
                                  "ebay2salestaxpercent": 0,
                                  "ebay2scheduletime": "",
                                  "ebay2secondcategory": "",
                                  "ebay2shippingcalculatedhandlingfee": 0,
                                  "ebay2shippingcalculatedinternationalhandlingfee": 0,
                                  "ebay2shippingcalculatedpostalcode": "",
                                  "ebay2shippingcalculatedshippingirregular": false,
                                  "ebay2shippingcalculatedshippingpackage": "",
                                  "ebay2shippingdomestic1additionalcost": 0,
                                  "ebay2shippingdomestic1cost": 0,
                                  "ebay2shippingdomestic1cutofftime": "",
                                  "ebay2shippingdomestic1expedited": "",
                                  "ebay2shippingdomestic1freeshipping": "",
                                  "ebay2shippingdomestic1handling": "",
                                  "ebay2shippingdomestic1insurancecost": 0,
                                  "ebay2shippingdomestic1localpickup": "",
                                  "ebay2shippingdomestic1service": "",
                                  "ebay2shippingdomestic1surcharge": 0,
                                  "ebay2shippingdomestic1timemax": 0,
                                  "ebay2shippingdomestic1timemin": 0,
                                  "ebay2shippingdomestic2additionalcost": 0,
                                  "ebay2shippingdomestic2cost": 0,
                                  "ebay2shippingdomestic2cutofftime": "",
                                  "ebay2shippingdomestic2expedited": "",
                                  "ebay2shippingdomestic2freeshipping": "",
                                  "ebay2shippingdomestic2handling": "",
                                  "ebay2shippingdomestic2insurancecost": 0,
                                  "ebay2shippingdomestic2localpickup": "",
                                  "ebay2shippingdomestic2service": "",
                                  "ebay2shippingdomestic2surcharge": 0,
                                  "ebay2shippingdomestic2timemax": 0,
                                  "ebay2shippingdomestic2timemin": 0,
                                  "ebay2shippingdomestic3additionalcost": 0,
                                  "ebay2shippingdomestic3cost": 0,
                                  "ebay2shippingdomestic3cutofftime": "",
                                  "ebay2shippingdomestic3expedited": "",
                                  "ebay2shippingdomestic3freeshipping": "",
                                  "ebay2shippingdomestic3handling": "",
                                  "ebay2shippingdomestic3insurancecost": 0,
                                  "ebay2shippingdomestic3localpickup": "",
                                  "ebay2shippingdomestic3service": "",
                                  "ebay2shippingdomestic3surcharge": 0,
                                  "ebay2shippingdomestic3timemax": 0,
                                  "ebay2shippingdomestic3timemin": 0,
                                  "ebay2shippingdomestic4additionalcost": 0,
                                  "ebay2shippingdomestic4cost": 0,
                                  "ebay2shippingdomestic4cutofftime": "",
                                  "ebay2shippingdomestic4expedited": "",
                                  "ebay2shippingdomestic4freeshipping": "",
                                  "ebay2shippingdomestic4handling": "",
                                  "ebay2shippingdomestic4insurancecost": 0,
                                  "ebay2shippingdomestic4localpickup": "",
                                  "ebay2shippingdomestic4service": "",
                                  "ebay2shippingdomestic4surcharge": 0,
                                  "ebay2shippingdomestic4timemax": 0,
                                  "ebay2shippingdomestic4timemin": 0,
                                  "ebay2shippingexcludes": "",
                                  "ebay2shippingglobal": "",
                                  "ebay2shippingincludedintax": "",
                                  "ebay2shippinginternational1additionalcost": 0,
                                  "ebay2shippinginternational1cost": 0,
                                  "ebay2shippinginternational1cutofftime": "",
                                  "ebay2shippinginternational1handling": "",
                                  "ebay2shippinginternational1insurancecost": 0,
                                  "ebay2shippinginternational1location": "",
                                  "ebay2shippinginternational1service": "",
                                  "ebay2shippinginternational2additionalcost": 0,
                                  "ebay2shippinginternational2cost": 0,
                                  "ebay2shippinginternational2cutofftime": "",
                                  "ebay2shippinginternational2handling": "",
                                  "ebay2shippinginternational2insurancecost": 0,
                                  "ebay2shippinginternational2location": "",
                                  "ebay2shippinginternational2service": "",
                                  "ebay2shippinginternational3additionalcost": 0,
                                  "ebay2shippinginternational3cost": 0,
                                  "ebay2shippinginternational3cutofftime": "",
                                  "ebay2shippinginternational3handling": "",
                                  "ebay2shippinginternational3insurancecost": 0,
                                  "ebay2shippinginternational3location": "",
                                  "ebay2shippinginternational3service": "",
                                  "ebay2shippinginternational4additionalcost": 0,
                                  "ebay2shippinginternational4cost": 0,
                                  "ebay2shippinginternational4cutofftime": "",
                                  "ebay2shippinginternational4handling": "",
                                  "ebay2shippinginternational4insurancecost": 0,
                                  "ebay2shippinginternational4location": "",
                                  "ebay2shippinginternational4service": "",
                                  "ebay2shippinginternational5additionalcost": 0,
                                  "ebay2shippinginternational5cost": 0,
                                  "ebay2shippinginternational5cutofftime": "",
                                  "ebay2shippinginternational5handling": "",
                                  "ebay2shippinginternational5insurancecost": 0,
                                  "ebay2shippinginternational5location": "",
                                  "ebay2shippinginternational5service": "",
                                  "ebay2shippingprofileid": "",
                                  "ebay2shippingratetabledom": "",
                                  "ebay2shippingratetableintl": "",
                                  "ebay2shippingtype": "",
                                  "ebay2shiptolocations": "",
                                  "ebay2siteid": "",
                                  "ebay2siteshipping": "",
                                  "ebay2skip": "alwaysSkip",
                                  "ebay2sku": "",
                                  "ebay2starttime": "",
                                  "ebay2storeid": "0",
                                  "ebay2storeid2": "0",
                                  "ebay2subtitle": "",
                                  "ebay2taxcategory": "",
                                  "ebay2template": "",
                                  "ebay2title": "",
                                  "ebay2upcnot": "",
                                  "ebay3adult": "",
                                  "ebay3auctionsrelist": "",
                                  "ebay3autopay": "",
                                  "ebay3autorelistaction": "",
                                  "ebay3autorelistcount": "",
                                  "ebay3autorelistduration": "",
                                  "ebay3autorelistmax": "",
                                  "ebay3autorelistprice": "",
                                  "ebay3bestofferautoacceptprice": 0,
                                  "ebay3bestofferenabled": "",
                                  "ebay3bestofferminimumprice": 0,
                                  "ebay3buyitnow": 0,
                                  "ebay3catid": "0",
                                  "ebay3country": "",
                                  "ebay3currency": "",
                                  "ebay3description": "",
                                  "ebay3dispatch": "",
                                  "ebay3duration": "",
                                  "ebay3endtime": "",
                                  "ebay3fitmentcatalog": "",
                                  "ebay3getitfast": "",
                                  "ebay3holidayreturn": "",
                                  "ebay3id": "0",
                                  "ebay3internationalon": "",
                                  "ebay3listing": "",
                                  "ebay3location": "",
                                  "ebay3minimumadvertisedprice": "",
                                  "ebay3minimumadvertisedpriceexposure": "",
                                  "ebay3options": {
                                    "autorelist": {
                                      "action": "",
                                      "count": "",
                                      "duration": "",
                                      "max": "",
                                      "price": ""
                                    },
                                    "bestoffer": {
                                      "autoacceptprice": 0,
                                      "minimumprice": 0
                                    },
                                    "buyitnow": 0,
                                    "country": "",
                                    "dispatch": null,
                                    "duration": "",
                                    "fitmentcatalog": "",
                                    "internationalon": "",
                                    "listing": "",
                                    "location": "",
                                    "minimumadvertisedprice": "",
                                    "minimumadvertisedpriceexposure": "",
                                    "paymentinstructions": "",
                                    "paymentmethods": [
                                      ""
                                    ],
                                    "paymentprofileid": "",
                                    "returnprofileid": "",
                                    "returns": {
                                      "description": ""
                                    },
                                    "salestaxpercent": 0,
                                    "scheduletime": "",
                                    "secondcategory": "",
                                    "shipping": {
                                      "calculated": {
                                        "handlingfee": 0,
                                        "internationalhandlingfee": 0,
                                        "postalcode": "",
                                        "shippingirregular": false,
                                        "shippingpackage": ""
                                      },
                                      "domestic": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        }
                                      },
                                      "excludes": [
                                        ""
                                      ],
                                      "international": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "5": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        }
                                      }
                                    },
                                    "shippingprofileid": "",
                                    "shiptolocations": [
                                      ""
                                    ],
                                    "siteid": "",
                                    "siteshipping": "",
                                    "subtitle": "",
                                    "taxcategory": "",
                                    "template": ""
                                  },
                                  "ebay3paymentinstructions": "",
                                  "ebay3paymentmethods": "",
                                  "ebay3paymentprofileid": "",
                                  "ebay3paypalemailaddress": "",
                                  "ebay3prefiliteminfo": "",
                                  "ebay3price": "0.00",
                                  "ebay3private": "",
                                  "ebay3promotionendtime": "",
                                  "ebay3promotionstarttime": "",
                                  "ebay3returnprofileid": "",
                                  "ebay3returnsdescription": "",
                                  "ebay3returnsrefund": "",
                                  "ebay3returnsrestockingfeevalue": "",
                                  "ebay3returnsreturnsaccepted": "",
                                  "ebay3returnsreturnswithin": "",
                                  "ebay3returnsshippingcostpaidby": "",
                                  "ebay3salestaxpercent": 0,
                                  "ebay3scheduletime": "",
                                  "ebay3secondcategory": "",
                                  "ebay3shippingcalculatedhandlingfee": 0,
                                  "ebay3shippingcalculatedinternationalhandlingfee": 0,
                                  "ebay3shippingcalculatedpostalcode": "",
                                  "ebay3shippingcalculatedshippingirregular": false,
                                  "ebay3shippingcalculatedshippingpackage": "",
                                  "ebay3shippingdomestic1additionalcost": 0,
                                  "ebay3shippingdomestic1cost": 0,
                                  "ebay3shippingdomestic1cutofftime": "",
                                  "ebay3shippingdomestic1expedited": "",
                                  "ebay3shippingdomestic1freeshipping": "",
                                  "ebay3shippingdomestic1handling": "",
                                  "ebay3shippingdomestic1insurancecost": 0,
                                  "ebay3shippingdomestic1localpickup": "",
                                  "ebay3shippingdomestic1service": "",
                                  "ebay3shippingdomestic1surcharge": 0,
                                  "ebay3shippingdomestic1timemax": 0,
                                  "ebay3shippingdomestic1timemin": 0,
                                  "ebay3shippingdomestic2additionalcost": 0,
                                  "ebay3shippingdomestic2cost": 0,
                                  "ebay3shippingdomestic2cutofftime": "",
                                  "ebay3shippingdomestic2expedited": "",
                                  "ebay3shippingdomestic2freeshipping": "",
                                  "ebay3shippingdomestic2handling": "",
                                  "ebay3shippingdomestic2insurancecost": 0,
                                  "ebay3shippingdomestic2localpickup": "",
                                  "ebay3shippingdomestic2service": "",
                                  "ebay3shippingdomestic2surcharge": 0,
                                  "ebay3shippingdomestic2timemax": 0,
                                  "ebay3shippingdomestic2timemin": 0,
                                  "ebay3shippingdomestic3additionalcost": 0,
                                  "ebay3shippingdomestic3cost": 0,
                                  "ebay3shippingdomestic3cutofftime": "",
                                  "ebay3shippingdomestic3expedited": "",
                                  "ebay3shippingdomestic3freeshipping": "",
                                  "ebay3shippingdomestic3handling": "",
                                  "ebay3shippingdomestic3insurancecost": 0,
                                  "ebay3shippingdomestic3localpickup": "",
                                  "ebay3shippingdomestic3service": "",
                                  "ebay3shippingdomestic3surcharge": 0,
                                  "ebay3shippingdomestic3timemax": 0,
                                  "ebay3shippingdomestic3timemin": 0,
                                  "ebay3shippingdomestic4additionalcost": 0,
                                  "ebay3shippingdomestic4cost": 0,
                                  "ebay3shippingdomestic4cutofftime": "",
                                  "ebay3shippingdomestic4expedited": "",
                                  "ebay3shippingdomestic4freeshipping": "",
                                  "ebay3shippingdomestic4handling": "",
                                  "ebay3shippingdomestic4insurancecost": 0,
                                  "ebay3shippingdomestic4localpickup": "",
                                  "ebay3shippingdomestic4service": "",
                                  "ebay3shippingdomestic4surcharge": 0,
                                  "ebay3shippingdomestic4timemax": 0,
                                  "ebay3shippingdomestic4timemin": 0,
                                  "ebay3shippingexcludes": "",
                                  "ebay3shippingglobal": "",
                                  "ebay3shippingincludedintax": "",
                                  "ebay3shippinginternational1additionalcost": 0,
                                  "ebay3shippinginternational1cost": 0,
                                  "ebay3shippinginternational1cutofftime": "",
                                  "ebay3shippinginternational1handling": "",
                                  "ebay3shippinginternational1insurancecost": 0,
                                  "ebay3shippinginternational1location": "",
                                  "ebay3shippinginternational1service": "",
                                  "ebay3shippinginternational2additionalcost": 0,
                                  "ebay3shippinginternational2cost": 0,
                                  "ebay3shippinginternational2cutofftime": "",
                                  "ebay3shippinginternational2handling": "",
                                  "ebay3shippinginternational2insurancecost": 0,
                                  "ebay3shippinginternational2location": "",
                                  "ebay3shippinginternational2service": "",
                                  "ebay3shippinginternational3additionalcost": 0,
                                  "ebay3shippinginternational3cost": 0,
                                  "ebay3shippinginternational3cutofftime": "",
                                  "ebay3shippinginternational3handling": "",
                                  "ebay3shippinginternational3insurancecost": 0,
                                  "ebay3shippinginternational3location": "",
                                  "ebay3shippinginternational3service": "",
                                  "ebay3shippinginternational4additionalcost": 0,
                                  "ebay3shippinginternational4cost": 0,
                                  "ebay3shippinginternational4cutofftime": "",
                                  "ebay3shippinginternational4handling": "",
                                  "ebay3shippinginternational4insurancecost": 0,
                                  "ebay3shippinginternational4location": "",
                                  "ebay3shippinginternational4service": "",
                                  "ebay3shippinginternational5additionalcost": 0,
                                  "ebay3shippinginternational5cost": 0,
                                  "ebay3shippinginternational5cutofftime": "",
                                  "ebay3shippinginternational5handling": "",
                                  "ebay3shippinginternational5insurancecost": 0,
                                  "ebay3shippinginternational5location": "",
                                  "ebay3shippinginternational5service": "",
                                  "ebay3shippingprofileid": "",
                                  "ebay3shippingratetabledom": "",
                                  "ebay3shippingratetableintl": "",
                                  "ebay3shippingtype": "",
                                  "ebay3shiptolocations": "",
                                  "ebay3siteid": "",
                                  "ebay3siteshipping": "",
                                  "ebay3skip": "",
                                  "ebay3sku": "",
                                  "ebay3starttime": "",
                                  "ebay3storeid": "0",
                                  "ebay3storeid2": "0",
                                  "ebay3subtitle": "",
                                  "ebay3taxcategory": "",
                                  "ebay3template": "",
                                  "ebay3title": "",
                                  "ebay3upcnot": "",
                                  "ebayadult": "",
                                  "ebayauctionsrelist": "",
                                  "ebayautopay": "",
                                  "ebayautorelistaction": "",
                                  "ebayautorelistcount": "",
                                  "ebayautorelistduration": "",
                                  "ebayautorelistmax": "",
                                  "ebayautorelistprice": "",
                                  "ebaybestofferautoacceptprice": 0,
                                  "ebaybestofferenabled": "",
                                  "ebaybestofferminimumprice": 0,
                                  "ebaybuyitnow": 0,
                                  "ebaycatid": "0",
                                  "ebaycountry": "",
                                  "ebaycurrency": "",
                                  "ebaydescription": "",
                                  "ebaydispatch": "",
                                  "ebayduration": "",
                                  "ebayendtime": "",
                                  "ebayepid": "0",
                                  "ebayfitmentcatalog": "",
                                  "ebaygetitfast": "",
                                  "ebayholidayreturn": "",
                                  "ebayid": "0",
                                  "ebayinternationalon": "",
                                  "ebayitemspecificsmapprice": "",
                                  "ebayitemspecificswarranty": "",
                                  "ebayktype": "",
                                  "ebaylisting": "",
                                  "ebaylocation": "",
                                  "ebayminimumadvertisedprice": "",
                                  "ebayminimumadvertisedpriceexposure": "",
                                  "ebayoptions": {
                                    "autorelist": {
                                      "action": "",
                                      "count": "",
                                      "duration": "",
                                      "max": "",
                                      "price": ""
                                    },
                                    "bestoffer": {
                                      "autoacceptprice": 0,
                                      "minimumprice": 0
                                    },
                                    "buyitnow": 0,
                                    "country": "",
                                    "dispatch": null,
                                    "duration": "",
                                    "fitmentcatalog": "",
                                    "internationalon": "",
                                    "itemspecifics": [],
                                    "listing": "",
                                    "location": "",
                                    "minimumadvertisedprice": "",
                                    "minimumadvertisedpriceexposure": "",
                                    "paymentinstructions": "",
                                    "paymentmethods": [
                                      ""
                                    ],
                                    "paymentprofileid": "-1",
                                    "returnprofileid": "-1",
                                    "returns": {
                                      "description": ""
                                    },
                                    "salestaxpercent": 0,
                                    "scheduletime": "",
                                    "secondcategory": "",
                                    "shipping": {
                                      "calculated": {
                                        "handlingfee": 0,
                                        "internationalhandlingfee": 0,
                                        "postalcode": "",
                                        "shippingirregular": false,
                                        "shippingpackage": ""
                                      },
                                      "domestic": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "service": "",
                                          "surcharge": 0,
                                          "timemax": 0,
                                          "timemin": 0
                                        }
                                      },
                                      "excludes": [
                                        ""
                                      ],
                                      "international": {
                                        "1": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "2": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "3": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "4": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        },
                                        "5": {
                                          "additionalcost": 0,
                                          "cost": 0,
                                          "insurancecost": 0,
                                          "location": "",
                                          "service": ""
                                        }
                                      }
                                    },
                                    "shippingprofileid": "-1",
                                    "shiptolocations": [
                                      ""
                                    ],
                                    "siteid": "",
                                    "siteshipping": "",
                                    "skip": "alwaysSkip",
                                    "subtitle": "",
                                    "taxcategory": "",
                                    "template": ""
                                  },
                                  "ebaypaymentinstructions": "",
                                  "ebaypaymentmethods": "",
                                  "ebaypaymentprofileid": "-1",
                                  "ebaypaypalemailaddress": "",
                                  "ebayprefiliteminfo": "",
                                  "ebayprice": "59.99",
                                  "ebayprivate": "",
                                  "ebayproductid": "",
                                  "ebaypromotionendtime": "",
                                  "ebaypromotionstarttime": "",
                                  "ebayreturnprofileid": "-1",
                                  "ebayreturnsdescription": "",
                                  "ebayreturnsrefund": "",
                                  "ebayreturnsrestockingfeevalue": "",
                                  "ebayreturnsreturnsaccepted": "",
                                  "ebayreturnsreturnswithin": "",
                                  "ebayreturnsshippingcostpaidby": "",
                                  "ebaysalestaxpercent": 0,
                                  "ebayscheduletime": "",
                                  "ebaysecondcategory": "",
                                  "ebayshippingcalculatedhandlingfee": 0,
                                  "ebayshippingcalculatedinternationalhandlingfee": 0,
                                  "ebayshippingcalculatedpostalcode": "",
                                  "ebayshippingcalculatedshippingirregular": false,
                                  "ebayshippingcalculatedshippingpackage": "",
                                  "ebayshippingdomestic1additionalcost": 0,
                                  "ebayshippingdomestic1cost": 0,
                                  "ebayshippingdomestic1cutofftime": "",
                                  "ebayshippingdomestic1expedited": "",
                                  "ebayshippingdomestic1freeshipping": "",
                                  "ebayshippingdomestic1handling": "",
                                  "ebayshippingdomestic1insurancecost": 0,
                                  "ebayshippingdomestic1localpickup": "",
                                  "ebayshippingdomestic1service": "",
                                  "ebayshippingdomestic1surcharge": 0,
                                  "ebayshippingdomestic1timemax": 0,
                                  "ebayshippingdomestic1timemin": 0,
                                  "ebayshippingdomestic2additionalcost": 0,
                                  "ebayshippingdomestic2cost": 0,
                                  "ebayshippingdomestic2cutofftime": "",
                                  "ebayshippingdomestic2expedited": "",
                                  "ebayshippingdomestic2freeshipping": "",
                                  "ebayshippingdomestic2handling": "",
                                  "ebayshippingdomestic2insurancecost": 0,
                                  "ebayshippingdomestic2localpickup": "",
                                  "ebayshippingdomestic2service": "",
                                  "ebayshippingdomestic2surcharge": 0,
                                  "ebayshippingdomestic2timemax": 0,
                                  "ebayshippingdomestic2timemin": 0,
                                  "ebayshippingdomestic3additionalcost": 0,
                                  "ebayshippingdomestic3cost": 0,
                                  "ebayshippingdomestic3cutofftime": "",
                                  "ebayshippingdomestic3expedited": "",
                                  "ebayshippingdomestic3freeshipping": "",
                                  "ebayshippingdomestic3handling": "",
                                  "ebayshippingdomestic3insurancecost": 0,
                                  "ebayshippingdomestic3localpickup": "",
                                  "ebayshippingdomestic3service": "",
                                  "ebayshippingdomestic3surcharge": 0,
                                  "ebayshippingdomestic3timemax": 0,
                                  "ebayshippingdomestic3timemin": 0,
                                  "ebayshippingdomestic4additionalcost": 0,
                                  "ebayshippingdomestic4cost": 0,
                                  "ebayshippingdomestic4cutofftime": "",
                                  "ebayshippingdomestic4expedited": "",
                                  "ebayshippingdomestic4freeshipping": "",
                                  "ebayshippingdomestic4handling": "",
                                  "ebayshippingdomestic4insurancecost": 0,
                                  "ebayshippingdomestic4localpickup": "",
                                  "ebayshippingdomestic4service": "",
                                  "ebayshippingdomestic4surcharge": 0,
                                  "ebayshippingdomestic4timemax": 0,
                                  "ebayshippingdomestic4timemin": 0,
                                  "ebayshippingexcludes": "",
                                  "ebayshippingglobal": "",
                                  "ebayshippingincludedintax": "",
                                  "ebayshippinginternational1additionalcost": 0,
                                  "ebayshippinginternational1cost": 0,
                                  "ebayshippinginternational1cutofftime": "",
                                  "ebayshippinginternational1handling": "",
                                  "ebayshippinginternational1insurancecost": 0,
                                  "ebayshippinginternational1location": "",
                                  "ebayshippinginternational1service": "",
                                  "ebayshippinginternational2additionalcost": 0,
                                  "ebayshippinginternational2cost": 0,
                                  "ebayshippinginternational2cutofftime": "",
                                  "ebayshippinginternational2handling": "",
                                  "ebayshippinginternational2insurancecost": 0,
                                  "ebayshippinginternational2location": "",
                                  "ebayshippinginternational2service": "",
                                  "ebayshippinginternational3additionalcost": 0,
                                  "ebayshippinginternational3cost": 0,
                                  "ebayshippinginternational3cutofftime": "",
                                  "ebayshippinginternational3handling": "",
                                  "ebayshippinginternational3insurancecost": 0,
                                  "ebayshippinginternational3location": "",
                                  "ebayshippinginternational3service": "",
                                  "ebayshippinginternational4additionalcost": 0,
                                  "ebayshippinginternational4cost": 0,
                                  "ebayshippinginternational4cutofftime": "",
                                  "ebayshippinginternational4handling": "",
                                  "ebayshippinginternational4insurancecost": 0,
                                  "ebayshippinginternational4location": "",
                                  "ebayshippinginternational4service": "",
                                  "ebayshippinginternational5additionalcost": 0,
                                  "ebayshippinginternational5cost": 0,
                                  "ebayshippinginternational5cutofftime": "",
                                  "ebayshippinginternational5handling": "",
                                  "ebayshippinginternational5insurancecost": 0,
                                  "ebayshippinginternational5location": "",
                                  "ebayshippinginternational5service": "",
                                  "ebayshippingprofileid": "-1",
                                  "ebayshippingratetabledom": "",
                                  "ebayshippingratetableintl": "",
                                  "ebayshippingtype": "",
                                  "ebayshiptolocations": "",
                                  "ebaysiteid": "",
                                  "ebaysiteshipping": "",
                                  "ebayskip": "alwaysSkip",
                                  "ebaysku": "",
                                  "ebaystarttime": "",
                                  "ebaystoreid": "0",
                                  "ebaystoreid2": "0",
                                  "ebaysubtitle": "",
                                  "ebaytaxcategory": "",
                                  "ebaytemplate": "",
                                  "ebaytitle": "",
                                  "ebayupcnot": "",
                                  "etsycategoryid": "",
                                  "etsydescription": "",
                                  "etsyiscustomizable": "",
                                  "etsyissupply": "",
                                  "etsylistingid": "0",
                                  "etsymaterials": "",
                                  "etsynontaxable": "",
                                  "etsyoccasion": "",
                                  "etsyoptions": {
                                    "category_id": "",
                                    "description": "",
                                    "is_customizable": "",
                                    "is_supply": "",
                                    "materials": "",
                                    "non_taxable": "",
                                    "occasion": "",
                                    "opts_listing_id": "",
                                    "price": "",
                                    "recipient": "",
                                    "shipping_template_id": "",
                                    "shop_section_id": "",
                                    "skip": "",
                                    "state": "",
                                    "title": "",
                                    "variant_keys": "",
                                    "when_made": "",
                                    "who_made": ""
                                  },
                                  "etsyoptslistingid": "",
                                  "etsyprice": "",
                                  "etsyrecipient": "",
                                  "etsyshippingtemplateid": "",
                                  "etsyshopsectionid": "",
                                  "etsyskip": "",
                                  "etsystate": "",
                                  "etsytitle": "",
                                  "etsyvariantkeys": "",
                                  "etsywhenmade": "",
                                  "etsywhomade": "",
                                  "exportlabel": "",
                                  "featured": "0",
                                  "flavor": "",
                                  "floormatlogo": "",
                                  "fulfillmentlatency": "0",
                                  "galleryuri": "",
                                  "geolocation": "",
                                  "googlecategory": "",
                                  "googleshopping": "1",
                                  "googleshopurl": "",
                                  "guid": "U8800",
                                  "guidad": "",
                                  "handlingfee": "0.00",
                                  "hosierysize": "",
                                  "htmltitle": "",
                                  "id": "1",
                                  "importfield": "",
                                  "inseam": "",
                                  "internationalshipping1": "0.00",
                                  "intimatessleepsizewomens": "",
                                  "isbn": "",
                                  "iskit": "0",
                                  "iskit_calculated_cost": false,
                                  "iskit_calculated_price": false,
                                  "jacketlength": "",
                                  "jacketsize": "",
                                  "keywords": "",
                                  "longdescription": "<p>Stay connected to friends and family with this mobile phone thatfeatures 4G speed, Wi-Fi and an Android 2.2 operating system for enhanced productivity on the go.The 5.0MP digital camera features a 4x zoom and autofocus for clear photos. Requires a minimumdata service starting at $15/month. Early termination fees will be prorated, starting at $325 minus $10for each full month of service commitment completed.</p>",
                                  "magento2attributeset": "",
                                  "magento2categories": "",
                                  "magento2description": "",
                                  "magento2listingid": "",
                                  "magento2metadescription": "",
                                  "magento2metakeyword": "",
                                  "magento2metatitle": "",
                                  "magento2name": "",
                                  "magento2oldlistingid": "",
                                  "magento2oldsku": "",
                                  "magento2options": {
                                    "attribute_set": "",
                                    "price": "59.99",
                                    "tax_class_id": ""
                                  },
                                  "magento2parentsku": "",
                                  "magento2price": "59.99",
                                  "magento2shortdescription": "",
                                  "magento2skip": "",
                                  "magento2sku": "",
                                  "magento2storepath": "",
                                  "magento2taxclassid": "",
                                  "magento2urlkey": "",
                                  "magento2urlpath": "",
                                  "magentoattributeset": "",
                                  "magentocategories": "",
                                  "magentodescription": "",
                                  "magentolistingid": "",
                                  "magentometadescription": "",
                                  "magentometakeyword": "",
                                  "magentometatitle": "",
                                  "magentoname": "",
                                  "magentooldlistingid": "",
                                  "magentooldsku": "",
                                  "magentooptions": {
                                    "attribute_set": "",
                                    "categories": "",
                                    "description": "",
                                    "meta_description": "",
                                    "meta_keyword": "",
                                    "meta_title": "",
                                    "name": "",
                                    "old_listing_id": "",
                                    "old_sku": "",
                                    "parent_sku": "",
                                    "price": "",
                                    "short_description": "",
                                    "skip": "",
                                    "store_path": "",
                                    "tax_class_id": "",
                                    "url_key": "",
                                    "url_path": ""
                                  },
                                  "magentoparentsku": "",
                                  "magentoprice": "",
                                  "magentoshortdescription": "",
                                  "magentoskip": "",
                                  "magentosku": "",
                                  "magentostorepath": "",
                                  "magentotaxclassid": "",
                                  "magentourlkey": "",
                                  "magentourlpath": "",
                                  "manufacturer": "",
                                  "manufacturerpartnumber": "",
                                  "mapprice": "0.00",
                                  "material": "",
                                  "maxstock": "0",
                                  "media1": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                                  "media10": "",
                                  "media10alttext": "",
                                  "media11alttext": "",
                                  "media1alttext": "",
                                  "media2": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black-2.jpg",
                                  "media2alttext": "",
                                  "media3": "",
                                  "media3alttext": "",
                                  "media4": "",
                                  "media4alttext": "",
                                  "media5": "",
                                  "media5alttext": "",
                                  "media6": "",
                                  "media6alttext": "",
                                  "media7": "",
                                  "media7alttext": "",
                                  "media8": "",
                                  "media8alttext": "",
                                  "media9": "",
                                  "media9alttext": "",
                                  "mediacount": "2",
                                  "mediax": "",
                                  "metadescription": "",
                                  "metal": "",
                                  "meyersku": "",
                                  "meyerstock": "0",
                                  "minstock": "0",
                                  "model": "",
                                  "modelnumber": "",
                                  "mpn": "",
                                  "msrp": "0.00",
                                  "name": "yesatt",
                                  "nameofnewfield": "",
                                  "newbccffield1": "",
                                  "notes": "",
                                  "numberofitems": "",
                                  "packagequantity": "",
                                  "parenturi": "android-smartphones",
                                  "pl20160304001": "",
                                  "pl20160304003": "",
                                  "preexistingcustomarc005": "",
                                  "price": "59.99",
                                  "productshippingtemplate": "",
                                  "producttaxcode": "",
                                  "producttype": "",
                                  "registeredparameter": "",
                                  "releasedate": "",
                                  "ringsize": "",
                                  "rule": "update",
                                  "shelfdescription": "",
                                  "shipping": "0.00",
                                  "shippingadditional": "0.00",
                                  "size": "8gb",
                                  "sizemens": "",
                                  "sizetype": "",
                                  "sizewomens": "",
                                  "sku": "U8800",
                                  "skuvaultbrand": "",
                                  "skuvaultclassification": "",
                                  "skuvaultcode": "",
                                  "skuvaultcost": "",
                                  "skuvaultdescription": "",
                                  "skuvaultiskit": "",
                                  "skuvaultislisted": "",
                                  "skuvaultlocationinfo": "",
                                  "skuvaultoptions": {
                                    "Brand": "",
                                    "Classification": "",
                                    "Code": "",
                                    "Cost": "",
                                    "Description": "",
                                    "PartNumber": "",
                                    "QuantityAvailable": "",
                                    "RetailPrice": "",
                                    "SalePrice": "",
                                    "Supplier": "",
                                    "isListed": "",
                                    "iskit": "",
                                    "locationInfo": "",
                                    "skip": ""
                                  },
                                  "skuvaultpartnumber": "",
                                  "skuvaultquantityavailable": "",
                                  "skuvaultretailprice": "",
                                  "skuvaultsaleprice": "",
                                  "skuvaultskip": "",
                                  "skuvaultsku": "",
                                  "skuvaultsupplier": "",
                                  "sleevelength": "",
                                  "socksize": "",
                                  "state": "active",
                                  "status": "publish",
                                  "stock": "1",
                                  "style": "Matte",
                                  "test": "",
                                  "test2": "",
                                  "testfield3": "",
                                  "testx1": "",
                                  "threadcolor": "",
                                  "title": "AT&T Impulse 4G Mobile Phone - Black",
                                  "total_stock": "4",
                                  "totalsold": "5",
                                  "transamericansku": "",
                                  "transamericanstock": "0",
                                  "tx1": "",
                                  "tx10": "",
                                  "tx11": "",
                                  "tx12": "",
                                  "tx13": "",
                                  "tx3": "",
                                  "type": "",
                                  "upc": "",
                                  "updatenotes": "",
                                  "updatereason": "S*S*S*S*S",
                                  "uri": "att-impulse-4g-mobile-phone-black-u8800",
                                  "usertype": "",
                                  "userupc": "",
                                  "usshoesizemens": "",
                                  "usshoesizewomens": "",
                                  "variationtheme": "",
                                  "vendorstock": "3",
                                  "waistsize": "",
                                  "walmartcategory": "",
                                  "walmartdescription": "",
                                  "walmartenqueued": "",
                                  "walmartinprogress": "0",
                                  "walmartislisted": "0",
                                  "walmartmedia": "",
                                  "walmartname": "",
                                  "walmartoptions": {
                                    "category": "",
                                    "description": "",
                                    "enqueued": "",
                                    "media": "",
                                    "name": "",
                                    "price": "",
                                    "skip": "",
                                    "url": ""
                                  },
                                  "walmartprice": "",
                                  "walmartskip": "",
                                  "walmartsku": "",
                                  "walmartstatus": "",
                                  "walmarturl": "",
                                  "warranty": "",
                                  "weight": "0.50",
                                  "wmcategory": "",
                                  "wmtaxcode": "",
                                  "working": ""
                                }
                              },
                              "itemid": "456",
                              "media": "http://assets.suredone.com/1019/media-pics/u8800-att-impulse-4g-mobile-phone-black.jpg",
                              "price": "13.17",
                              "quantity": "1",
                              "sku": "U8800",
                              "source": "",
                              "title": "mpulse 4G Mobile Phone Case",
                              "weight": "1.00"
                            }
                          ],
                          "itemtotal": "13.17",
                          "meta": [],
                          "oid": "353",
                          "oidconsolidate": "0",
                          "order": "custom12345",
                          "ordernumber": "12345",
                          "payment": "Visa",
                          "paymentdate": "2018-06-27 13:38:25",
                          "paymentstatus": "COMPLETE",
                          "refunds": [],
                          "shipments": [
                            {
                              "shipcarrier": "FedEx",
                              "shipcost": "0.00",
                              "shipdate": "2018-07-01 00:00:01",
                              "shipdetails": [],
                              "shipid": "49",
                              "shipservice": "",
                              "shiptracking": "9999999999",
                              "shipuser": ""
                            }
                          ],
                          "shipping": {
                            "city": "New York",
                            "company": "",
                            "country": "US",
                            "firstname": "Test",
                            "lastname": "User",
                            "middlename": "",
                            "phone": "877-773-6755",
                            "phone2": "",
                            "postalcode": "10010",
                            "stateprovince": "NY",
                            "street1": "115 E 23rd St",
                            "street2": "FL 3",
                            "street3": ""
                          },
                          "shippingcarrier": "FedEx",
                          "shippingservice": "Standard",
                          "shippingstatus": "COMPLETE",
                          "shippingtotal": "0.00",
                          "status": "COMPLETE",
                          "taxtotal": "0.00",
                          "total": "13.17",
                          "transactionid": "30090115962746"
                        }
                      ],
                      "timestamp": "2018-08-11T20:04:35Z"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Orders Requests"
        ],
        "description": "Retrieve a single order by its numeric database OID or by the customer-facing order string (channel + ordernumber). The handler chooses between the two by `is_numeric()`.",
        "operationId": "getOrderByOid",
        "summary": "Get order by oid"
      }
    },
    "/v3/webhooks/deliveries/{id}/retry": {
      "post": {
        "parameters": [
          {
            "description": "The delivery ID",
            "in": "path",
            "name": "id",
            "required": true,
            "example": "msg_1abc2def3ghi_ep_2abc3def4ghi5jkl",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `retryFailedDelivery`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retry Failed Delivery — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Delivery retry queued",
                    "result": {
                      "status": "queued"
                    },
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "properties": {
                        "status": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Delivery retry queued",
                      "result": {
                        "status": "queued"
                      },
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Retry Failed Delivery — target resource not found.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "error": "Delivery not found"
                  },
                  "properties": {
                    "error": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "error": "Delivery not found"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Retry a failed webhook delivery. The delivery ID is in the format `{msgId}_{endpointId}` as returned in delivery logs.",
        "operationId": "retryFailedDelivery",
        "summary": "Retry Failed Delivery"
      }
    },
    "/v3/webhooks/endpoints": {
      "get": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `listWebhookEndpoints`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "List Webhook Endpoints — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "endpoints": [
                      {
                        "createdAt": "2026-02-01T12:00:00Z",
                        "description": "Receives order notifications",
                        "disabled": false,
                        "eventTypes": [
                          "order.created",
                          "order.fulfilled"
                        ],
                        "health": "healthy",
                        "healthStatus": "healthy",
                        "id": "ep_2abc3def4ghi5jkl",
                        "lastDeliveryAt": "2026-02-19T11:30:00Z",
                        "name": "My Webhook Endpoint",
                        "successRate": 99.5,
                        "updatedAt": "2026-02-01T12:00:00Z",
                        "url": "https://example.com/webhooks"
                      }
                    ],
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "endpoints": {
                      "items": {
                        "properties": {
                          "createdAt": {
                            "type": "string"
                          },
                          "description": {
                            "type": "string"
                          },
                          "disabled": {
                            "type": "boolean"
                          },
                          "eventTypes": {
                            "items": {
                              "type": "string"
                            },
                            "type": "array"
                          },
                          "health": {
                            "type": "string"
                          },
                          "healthStatus": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          },
                          "lastDeliveryAt": {
                            "type": [
                              "string",
                              "null"
                            ]
                          },
                          "name": {
                            "type": "string"
                          },
                          "successRate": {
                            "type": [
                              "number",
                              "null"
                            ]
                          },
                          "updatedAt": {
                            "type": "string"
                          },
                          "url": {
                            "type": "string"
                          }
                        },
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "endpoints": [
                        {
                          "createdAt": "2026-02-01T12:00:00Z",
                          "description": "Receives order notifications",
                          "disabled": false,
                          "eventTypes": [
                            "order.created",
                            "order.fulfilled"
                          ],
                          "health": "healthy",
                          "healthStatus": "healthy",
                          "id": "ep_2abc3def4ghi5jkl",
                          "lastDeliveryAt": "2026-02-19T11:30:00Z",
                          "name": "My Webhook Endpoint",
                          "successRate": 99.5,
                          "updatedAt": "2026-02-01T12:00:00Z",
                          "url": "https://example.com/webhooks"
                        }
                      ],
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/InvalidParams"
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Returns all webhook endpoints configured for the authenticated user, including health metrics.",
        "operationId": "listWebhookEndpoints",
        "summary": "List Webhook Endpoints"
      },
      "post": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `createWebhookEndpoint`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "description": "Receives all order events",
                  "event_types": [
                    "order.created",
                    "order.updated",
                    "order.fulfilled",
                    "order.status_changed"
                  ],
                  "name": "My Webhook Endpoint",
                  "url": "https://example.com/webhooks"
                },
                "properties": {
                  "description": {
                    "type": "string"
                  },
                  "event_types": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "name": {
                    "type": "string"
                  },
                  "url": {
                    "type": "string"
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Create Webhook Endpoint — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "endpoint": {
                      "createdAt": "2026-02-19T12:00:00Z",
                      "description": "Receives all order events",
                      "disabled": false,
                      "eventTypes": [
                        "order.created",
                        "order.updated",
                        "order.fulfilled",
                        "order.status_changed"
                      ],
                      "health": "healthy",
                      "healthStatus": "healthy",
                      "id": "ep_2abc3def4ghi5jkl",
                      "lastDeliveryAt": null,
                      "name": "My Webhook Endpoint",
                      "secret": "whsec_EXAMPLE_NOT_A_REAL_SECRET",
                      "successRate": null,
                      "updatedAt": "2026-02-19T12:00:00Z",
                      "url": "https://example.com/webhooks"
                    },
                    "message": "Webhook endpoint created successfully",
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "endpoint": {
                      "properties": {
                        "createdAt": {
                          "type": "string"
                        },
                        "description": {
                          "type": "string"
                        },
                        "disabled": {
                          "type": "boolean"
                        },
                        "eventTypes": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "health": {
                          "type": "string"
                        },
                        "healthStatus": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "lastDeliveryAt": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "secret": {
                          "type": "string"
                        },
                        "successRate": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "updatedAt": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "message": {
                      "type": "string"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "endpoint": {
                        "createdAt": "2026-02-19T12:00:00Z",
                        "description": "Receives all order events",
                        "disabled": false,
                        "eventTypes": [
                          "order.created",
                          "order.updated",
                          "order.fulfilled",
                          "order.status_changed"
                        ],
                        "health": "healthy",
                        "healthStatus": "healthy",
                        "id": "ep_2abc3def4ghi5jkl",
                        "lastDeliveryAt": null,
                        "name": "My Webhook Endpoint",
                        "secret": "whsec_EXAMPLE_NOT_A_REAL_SECRET",
                        "successRate": null,
                        "updatedAt": "2026-02-19T12:00:00Z",
                        "url": "https://example.com/webhooks"
                      },
                      "message": "Webhook endpoint created successfully",
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Create Webhook Endpoint — request rejected (validation, missing fields, or invalid identifier).",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "error": "Missing required fields: url, event_types"
                  },
                  "properties": {
                    "error": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "error": "Missing required fields: url, event_types"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Create a new webhook endpoint. The response includes the signing secret which is used to verify webhook signatures. Store this secret securely — it is only returned on creation.\n\n### Request Fields\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|url|HTTPS URL to receive webhook deliveries, maximum 2048 characters. Must be a publicly accessible HTTPS endpoint (no private/internal networks).|Yes|\n|event_types|Array of event type names to subscribe to (e.g., `[\"order.created\", \"order.fulfilled\"]`). At least one event type is required.|Yes|\n|name|Display name for the endpoint, maximum 100 characters||\n|description|Description of the endpoint, maximum 500 characters||",
        "operationId": "createWebhookEndpoint",
        "summary": "Create Webhook Endpoint"
      }
    },
    "/v3/webhooks/endpoints/{id}": {
      "delete": {
        "parameters": [
          {
            "description": "The endpoint ID — required by `deleteWebhookEndpoint`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": "ep_2abc3def4ghi5jkl",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `deleteWebhookEndpoint`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Delete Webhook Endpoint — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Webhook endpoint deleted successfully",
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Webhook endpoint deleted successfully",
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Delete Webhook Endpoint — target resource not found.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "error": "Webhook endpoint not found"
                  },
                  "properties": {
                    "error": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "error": "Webhook endpoint not found"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Permanently delete a webhook endpoint. This action cannot be undone.",
        "operationId": "deleteWebhookEndpoint",
        "summary": "Delete Webhook Endpoint"
      },
      "get": {
        "parameters": [
          {
            "description": "The endpoint ID — required by `getWebhookEndpoint`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": "ep_2abc3def4ghi5jkl",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `getWebhookEndpoint`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Get Webhook Endpoint — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "endpoint": {
                      "createdAt": "2026-02-01T12:00:00Z",
                      "description": "Receives order notifications",
                      "disabled": false,
                      "eventTypes": [
                        "order.created",
                        "order.fulfilled"
                      ],
                      "health": "healthy",
                      "healthStatus": "healthy",
                      "id": "ep_2abc3def4ghi5jkl",
                      "lastDeliveryAt": "2026-02-19T11:30:00Z",
                      "name": "My Webhook Endpoint",
                      "successRate": 100,
                      "updatedAt": "2026-02-01T12:00:00Z",
                      "url": "https://example.com/webhooks"
                    },
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "endpoint": {
                      "properties": {
                        "createdAt": {
                          "type": "string"
                        },
                        "description": {
                          "type": "string"
                        },
                        "disabled": {
                          "type": "boolean"
                        },
                        "eventTypes": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "health": {
                          "type": "string"
                        },
                        "healthStatus": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "lastDeliveryAt": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "successRate": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "updatedAt": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "endpoint": {
                        "createdAt": "2026-02-01T12:00:00Z",
                        "description": "Receives order notifications",
                        "disabled": false,
                        "eventTypes": [
                          "order.created",
                          "order.fulfilled"
                        ],
                        "health": "healthy",
                        "healthStatus": "healthy",
                        "id": "ep_2abc3def4ghi5jkl",
                        "lastDeliveryAt": "2026-02-19T11:30:00Z",
                        "name": "My Webhook Endpoint",
                        "successRate": 100,
                        "updatedAt": "2026-02-01T12:00:00Z",
                        "url": "https://example.com/webhooks"
                      },
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Get Webhook Endpoint — target resource not found.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "error": "Webhook endpoint not found"
                  },
                  "properties": {
                    "error": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "error": "Webhook endpoint not found"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Returns details for a single webhook endpoint, including health metrics.",
        "operationId": "getWebhookEndpoint",
        "summary": "Get Webhook Endpoint"
      },
      "patch": {
        "parameters": [
          {
            "description": "The endpoint ID — required by `updateWebhookEndpoint`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": "ep_2abc3def4ghi5jkl",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `updateWebhookEndpoint`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "disabled": false,
                  "event_types": [
                    "order.created",
                    "order.fulfilled"
                  ]
                },
                "properties": {
                  "disabled": {
                    "type": "boolean"
                  },
                  "event_types": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Update Webhook Endpoint — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "endpoint": {
                      "createdAt": "2026-02-01T12:00:00Z",
                      "description": "Receives all order events",
                      "disabled": false,
                      "eventTypes": [
                        "order.created",
                        "order.fulfilled"
                      ],
                      "health": "healthy",
                      "healthStatus": "healthy",
                      "id": "ep_2abc3def4ghi5jkl",
                      "lastDeliveryAt": "2026-02-19T11:30:00Z",
                      "name": "My Webhook Endpoint",
                      "successRate": 99.5,
                      "updatedAt": "2026-02-19T12:00:00Z",
                      "url": "https://example.com/webhooks"
                    },
                    "message": "Webhook endpoint updated successfully",
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "endpoint": {
                      "properties": {
                        "createdAt": {
                          "type": "string"
                        },
                        "description": {
                          "type": "string"
                        },
                        "disabled": {
                          "type": "boolean"
                        },
                        "eventTypes": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "health": {
                          "type": "string"
                        },
                        "healthStatus": {
                          "type": "string"
                        },
                        "id": {
                          "type": "string"
                        },
                        "lastDeliveryAt": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "name": {
                          "type": "string"
                        },
                        "successRate": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "updatedAt": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string"
                        }
                      },
                      "type": "object"
                    },
                    "message": {
                      "type": "string"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "endpoint": {
                        "createdAt": "2026-02-01T12:00:00Z",
                        "description": "Receives all order events",
                        "disabled": false,
                        "eventTypes": [
                          "order.created",
                          "order.fulfilled"
                        ],
                        "health": "healthy",
                        "healthStatus": "healthy",
                        "id": "ep_2abc3def4ghi5jkl",
                        "lastDeliveryAt": "2026-02-19T11:30:00Z",
                        "name": "My Webhook Endpoint",
                        "successRate": 99.5,
                        "updatedAt": "2026-02-19T12:00:00Z",
                        "url": "https://example.com/webhooks"
                      },
                      "message": "Webhook endpoint updated successfully",
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Update Webhook Endpoint — target resource not found.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "error": "Webhook endpoint not found"
                  },
                  "properties": {
                    "error": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "error": "Webhook endpoint not found"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Update an existing webhook endpoint. Accepts partial updates — only include the fields you want to change.\n\n### Request Fields\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|url|HTTPS URL to receive webhook deliveries||\n|event_types|Array of event type names to subscribe to||\n|name|Display name for the endpoint||\n|description|Description of the endpoint||\n|disabled|Boolean to enable or disable the endpoint||",
        "operationId": "updateWebhookEndpoint",
        "summary": "Update Webhook Endpoint"
      }
    },
    "/v3/webhooks/endpoints/{id}/logs": {
      "get": {
        "parameters": [
          {
            "description": "The endpoint ID — required by `getDeliveryLogs`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": "ep_2abc3def4ghi5jkl",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Maximum number of records to return per page.",
            "in": "query",
            "name": "limit",
            "required": false,
            "example": 10,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Number of records to skip for pagination.",
            "in": "query",
            "name": "offset",
            "required": false,
            "example": 0,
            "schema": {
              "type": "number"
            }
          },
          {
            "description": "Filter by order status (`INCOMPLETE`, `READY`, `PENDING`, `ORDERED`, `DROPSHIPPED`, `COMPLETE`, `ARCHIVED`).",
            "in": "query",
            "name": "status",
            "required": false,
            "example": "success",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Filter results to a single webhook event type (e.g. `order.created`).",
            "in": "query",
            "name": "event_type",
            "required": false,
            "example": "order.created",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Return entries dated strictly before this RFC 3339 timestamp.",
            "in": "query",
            "name": "before",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Return entries dated strictly after this RFC 3339 timestamp.",
            "in": "query",
            "name": "after",
            "required": false,
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `getDeliveryLogs`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Get Delivery Logs — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "logs": [
                      {
                        "attemptCount": 1,
                        "attempts": [
                          {
                            "attemptNumber": 1,
                            "error": null,
                            "responseTime": 145,
                            "status": "success",
                            "statusCode": 200,
                            "timestamp": "2026-02-19T11:30:00Z"
                          }
                        ],
                        "eventId": "msg_1abc2def3ghi",
                        "eventType": "order.created",
                        "id": "msg_1abc2def3ghi_ep_2abc3def4ghi5jkl",
                        "payload": {
                          "data": {
                            "channel": "ebay",
                            "oid": "12345",
                            "resource_id": "12345",
                            "resource_type": "order",
                            "status": "READY"
                          },
                          "datacontenttype": "application/json",
                          "id": "evt_a1b2c3d4e5f6a1b2c3d4e5f6",
                          "source": "/suredone/users/1021",
                          "specversion": "1.0",
                          "time": "2026-02-19T11:30:00.000000Z",
                          "type": "suredone.order.created"
                        },
                        "responseBody": "OK",
                        "responseTime": 145,
                        "status": "success",
                        "statusCode": 200,
                        "timestamp": "2026-02-19T11:30:00Z"
                      }
                    ],
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "logs": {
                      "items": {
                        "properties": {
                          "attemptCount": {
                            "type": "number"
                          },
                          "attempts": {
                            "items": {
                              "properties": {
                                "attemptNumber": {
                                  "type": "number"
                                },
                                "error": {
                                  "type": [
                                    "string",
                                    "null"
                                  ]
                                },
                                "responseTime": {
                                  "type": "number"
                                },
                                "status": {
                                  "type": "string"
                                },
                                "statusCode": {
                                  "type": "number"
                                },
                                "timestamp": {
                                  "type": "string"
                                }
                              },
                              "type": "object"
                            },
                            "type": "array"
                          },
                          "eventId": {
                            "type": "string"
                          },
                          "eventType": {
                            "type": "string"
                          },
                          "id": {
                            "type": "string"
                          },
                          "payload": {
                            "properties": {
                              "data": {
                                "properties": {
                                  "channel": {
                                    "type": "string"
                                  },
                                  "oid": {
                                    "type": "string"
                                  },
                                  "resource_id": {
                                    "type": "string"
                                  },
                                  "resource_type": {
                                    "type": "string"
                                  },
                                  "status": {
                                    "type": "string"
                                  }
                                },
                                "type": "object"
                              },
                              "datacontenttype": {
                                "type": "string"
                              },
                              "id": {
                                "type": "string"
                              },
                              "source": {
                                "type": "string"
                              },
                              "specversion": {
                                "type": "string"
                              },
                              "time": {
                                "type": "string"
                              },
                              "type": {
                                "type": "string"
                              }
                            },
                            "type": "object"
                          },
                          "responseBody": {
                            "type": "string"
                          },
                          "responseTime": {
                            "type": "number"
                          },
                          "status": {
                            "type": "string"
                          },
                          "statusCode": {
                            "type": "number"
                          },
                          "timestamp": {
                            "type": "string"
                          }
                        },
                        "type": "object"
                      },
                      "type": "array"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "logs": [
                        {
                          "attemptCount": 1,
                          "attempts": [
                            {
                              "attemptNumber": 1,
                              "error": null,
                              "responseTime": 145,
                              "status": "success",
                              "statusCode": 200,
                              "timestamp": "2026-02-19T11:30:00Z"
                            }
                          ],
                          "eventId": "msg_1abc2def3ghi",
                          "eventType": "order.created",
                          "id": "msg_1abc2def3ghi_ep_2abc3def4ghi5jkl",
                          "payload": {
                            "data": {
                              "channel": "ebay",
                              "oid": "12345",
                              "resource_id": "12345",
                              "resource_type": "order",
                              "status": "READY"
                            },
                            "datacontenttype": "application/json",
                            "id": "evt_a1b2c3d4e5f6a1b2c3d4e5f6",
                            "source": "/suredone/users/1021",
                            "specversion": "1.0",
                            "time": "2026-02-19T11:30:00.000000Z",
                            "type": "suredone.order.created"
                          },
                          "responseBody": "OK",
                          "responseTime": 145,
                          "status": "success",
                          "statusCode": 200,
                          "timestamp": "2026-02-19T11:30:00Z"
                        }
                      ],
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Retrieve delivery logs for a webhook endpoint. Logs are grouped by logical delivery (retries are consolidated under a single delivery entry). Each delivery includes an array of individual attempts with status, response time, and timestamp.\n\n### Query Parameters\n\n|Parameter|Description|Default|\n|:--------------|----------|--------|\n|limit|Number of delivery logs to return (1-100)|50|\n|offset|Number of delivery logs to skip for pagination|0|\n|status|Filter by delivery status: `success`, `failed`, or `pending`||\n|event_type|Filter by event type (e.g., `order.created`)||\n|before|ISO 8601 timestamp — only return deliveries before this time||\n|after|ISO 8601 timestamp — only return deliveries after this time||",
        "operationId": "getDeliveryLogs",
        "summary": "Get Delivery Logs"
      }
    },
    "/v3/webhooks/endpoints/{id}/rotate-secret": {
      "post": {
        "parameters": [
          {
            "description": "The endpoint ID — required by `rotateSigningSecret`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": "ep_2abc3def4ghi5jkl",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `rotateSigningSecret`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Rotate Signing Secret — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Signing secret rotated successfully",
                    "secret": "whsec_EXAMPLE_ROTATED_NOT_A_REAL_SECRET",
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "secret": {
                      "type": "string"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Signing secret rotated successfully",
                      "secret": "whsec_EXAMPLE_ROTATED_NOT_A_REAL_SECRET",
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Rotate Signing Secret — target resource not found.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "error": "Webhook endpoint not found"
                  },
                  "properties": {
                    "error": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "error": "Webhook endpoint not found"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Rotate the signing secret for a webhook endpoint. The previous secret is immediately invalidated and a new secret is returned. Update your verification logic with the new secret before processing further deliveries.",
        "operationId": "rotateSigningSecret",
        "summary": "Rotate Signing Secret"
      }
    },
    "/v3/webhooks/endpoints/{id}/test": {
      "post": {
        "parameters": [
          {
            "description": "The endpoint ID — required by `testWebhookEndpoint`.",
            "in": "path",
            "name": "id",
            "required": true,
            "example": "ep_2abc3def4ghi5jkl",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `testWebhookEndpoint`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "example": {
                  "event_type": "order.fulfilled"
                },
                "properties": {
                  "event_type": {
                    "type": "string"
                  }
                },
                "type": "object"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Test Webhook Endpoint — completed.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "message": "Test event sent successfully",
                    "result": {
                      "deliveryMode": "synchronous",
                      "error": null,
                      "messageId": "msg_1abc2def3ghi4jkl",
                      "responseBody": "OK",
                      "responseTime": 145,
                      "status": "delivered",
                      "statusCode": 200,
                      "success": true
                    },
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "message": {
                      "type": "string"
                    },
                    "result": {
                      "properties": {
                        "deliveryMode": {
                          "type": "string"
                        },
                        "error": {
                          "type": [
                            "string",
                            "null"
                          ]
                        },
                        "messageId": {
                          "type": "string"
                        },
                        "responseBody": {
                          "type": "string"
                        },
                        "responseTime": {
                          "type": "number"
                        },
                        "status": {
                          "type": "string"
                        },
                        "statusCode": {
                          "type": "number"
                        },
                        "success": {
                          "type": "boolean"
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "message": "Test event sent successfully",
                      "result": {
                        "deliveryMode": "synchronous",
                        "error": null,
                        "messageId": "msg_1abc2def3ghi4jkl",
                        "responseBody": "OK",
                        "responseTime": 145,
                        "status": "delivered",
                        "statusCode": 200,
                        "success": true
                      },
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Test Webhook Endpoint — target resource not found.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "error": "Webhook endpoint not found"
                  },
                  "properties": {
                    "error": {
                      "type": [
                        "string",
                        "null"
                      ]
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "error": "Webhook endpoint not found"
                    }
                  }
                }
              }
            }
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Send a test event to a webhook endpoint. The test is synchronous — the response includes the delivery result (HTTP status code, response time, and response body from your endpoint). If delivery takes longer than 5 seconds, the response indicates the event was queued and you can check the delivery logs for results.\n\n### Request Fields\n\n|Field|Description|Required|\n|:--------------|----------|--------|\n|event_type|Event type to test. Defaults to `order.created`. Valid values: `order.created`, `order.updated`, `order.fulfilled`, `order.status_changed`||",
        "operationId": "testWebhookEndpoint",
        "summary": "Test Webhook Endpoint"
      }
    },
    "/v3/webhooks/event-types": {
      "get": {
        "parameters": [
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `listEventTypes`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "List Event Types — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "event_types": {
                      "order": [
                        {
                          "description": "Fired when a new order is created",
                          "enabled": true,
                          "label": "Order Created",
                          "value": "order.created"
                        },
                        {
                          "description": "Fired when an existing order is updated",
                          "enabled": true,
                          "label": "Order Updated",
                          "value": "order.updated"
                        },
                        {
                          "description": "Fired when an order is marked as fulfilled",
                          "enabled": true,
                          "label": "Order Fulfilled",
                          "value": "order.fulfilled"
                        },
                        {
                          "description": "Fired when an order status changes",
                          "enabled": true,
                          "label": "Order Status Changed",
                          "value": "order.status_changed"
                        }
                      ],
                      "product": [
                        {
                          "description": "Fired when a new product is created",
                          "enabled": false,
                          "label": "Product Created",
                          "value": "product.created"
                        },
                        {
                          "description": "Fired when an existing product is updated",
                          "enabled": false,
                          "label": "Product Updated",
                          "value": "product.updated"
                        },
                        {
                          "description": "Fired when a product is deleted",
                          "enabled": false,
                          "label": "Product Deleted",
                          "value": "product.deleted"
                        },
                        {
                          "description": "Fired when product inventory levels change",
                          "enabled": false,
                          "label": "Inventory Changed",
                          "value": "product.inventory_changed"
                        }
                      ]
                    },
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "event_types": {
                      "properties": {
                        "order": {
                          "items": {
                            "properties": {
                              "description": {
                                "type": "string"
                              },
                              "enabled": {
                                "type": "boolean"
                              },
                              "label": {
                                "type": "string"
                              },
                              "value": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "value",
                              "label",
                              "description",
                              "enabled"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        },
                        "product": {
                          "items": {
                            "properties": {
                              "description": {
                                "type": "string"
                              },
                              "enabled": {
                                "type": "boolean"
                              },
                              "label": {
                                "type": "string"
                              },
                              "value": {
                                "type": [
                                  "string",
                                  "null"
                                ]
                              }
                            },
                            "required": [
                              "value",
                              "label",
                              "description",
                              "enabled"
                            ],
                            "type": "object"
                          },
                          "type": "array"
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "event_types": {
                        "order": [
                          {
                            "description": "Fired when a new order is created",
                            "enabled": true,
                            "label": "Order Created",
                            "value": "order.created"
                          },
                          {
                            "description": "Fired when an existing order is updated",
                            "enabled": true,
                            "label": "Order Updated",
                            "value": "order.updated"
                          },
                          {
                            "description": "Fired when an order is marked as fulfilled",
                            "enabled": true,
                            "label": "Order Fulfilled",
                            "value": "order.fulfilled"
                          },
                          {
                            "description": "Fired when an order status changes",
                            "enabled": true,
                            "label": "Order Status Changed",
                            "value": "order.status_changed"
                          }
                        ],
                        "product": [
                          {
                            "description": "Fired when a new product is created",
                            "enabled": false,
                            "label": "Product Created",
                            "value": "product.created"
                          },
                          {
                            "description": "Fired when an existing product is updated",
                            "enabled": false,
                            "label": "Product Updated",
                            "value": "product.updated"
                          },
                          {
                            "description": "Fired when a product is deleted",
                            "enabled": false,
                            "label": "Product Deleted",
                            "value": "product.deleted"
                          },
                          {
                            "description": "Fired when product inventory levels change",
                            "enabled": false,
                            "label": "Inventory Changed",
                            "value": "product.inventory_changed"
                          }
                        ]
                      },
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/InvalidParams"
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Returns all available webhook event types, grouped by category. Event types marked as `enabled: false` are planned for future release and cannot be subscribed to yet.",
        "operationId": "listEventTypes",
        "summary": "List Event Types"
      }
    },
    "/v3/webhooks/statistics": {
      "get": {
        "parameters": [
          {
            "description": "Reporting window for the statistics aggregation (e.g. `24h`, `7d`, `30d`).",
            "in": "query",
            "name": "period",
            "required": false,
            "example": "7d",
            "schema": {
              "type": "string"
            }
          },
          {
            "description": "Identifies the partner integration that triggered the request. Optional; supply your partner slug or shared identifier (e.g. `mypartnername`). Used here when calling `getWebhookStatistics`.",
            "in": "header",
            "name": "X-Auth-Integration",
            "required": false,
            "example": "{partnername}",
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Get Webhook Statistics — results returned.",
            "headers": {},
            "content": {
              "application/json": {
                "schema": {
                  "example": {
                    "period": "7d",
                    "statistics": {
                      "byEventType": {
                        "order.created": 500,
                        "order.fulfilled": 200,
                        "order.status_changed": 100,
                        "order.updated": 450
                      },
                      "failedDeliveries": 10,
                      "pendingRetries": 3,
                      "period": "7d",
                      "periodEnd": "2026-02-19T12:00:00+00:00",
                      "periodStart": "2026-02-12T12:00:00+00:00",
                      "successRate": 99.2,
                      "successfulDeliveries": 1240,
                      "totalDeliveries": 1250,
                      "totalEndpoints": 2
                    },
                    "timestamp": "2026-02-19T12:00:00+00:00"
                  },
                  "properties": {
                    "period": {
                      "type": "string"
                    },
                    "statistics": {
                      "properties": {
                        "byEventType": {
                          "properties": {
                            "order.created": {
                              "type": "number"
                            },
                            "order.fulfilled": {
                              "type": "number"
                            },
                            "order.status_changed": {
                              "type": "number"
                            },
                            "order.updated": {
                              "type": "number"
                            }
                          },
                          "type": "object"
                        },
                        "failedDeliveries": {
                          "type": "number"
                        },
                        "pendingRetries": {
                          "type": "number"
                        },
                        "period": {
                          "type": "string"
                        },
                        "periodEnd": {
                          "type": "string"
                        },
                        "periodStart": {
                          "type": "string"
                        },
                        "successRate": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "successfulDeliveries": {
                          "type": "number"
                        },
                        "totalDeliveries": {
                          "type": "number"
                        },
                        "totalEndpoints": {
                          "type": "number"
                        }
                      },
                      "type": "object"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  },
                  "type": "object"
                },
                "examples": {
                  "response": {
                    "value": {
                      "period": "7d",
                      "statistics": {
                        "byEventType": {
                          "order.created": 500,
                          "order.fulfilled": 200,
                          "order.status_changed": 100,
                          "order.updated": 450
                        },
                        "failedDeliveries": 10,
                        "pendingRetries": 3,
                        "period": "7d",
                        "periodEnd": "2026-02-19T12:00:00+00:00",
                        "periodStart": "2026-02-12T12:00:00+00:00",
                        "successRate": 99.2,
                        "successfulDeliveries": 1240,
                        "totalDeliveries": 1250,
                        "totalEndpoints": 2
                      },
                      "timestamp": "2026-02-19T12:00:00+00:00"
                    }
                  }
                }
              }
            }
          },
          "400": {
            "$ref": "#/components/responses/InvalidParams"
          }
        },
        "tags": [
          "Webhooks"
        ],
        "description": "Retrieve aggregate delivery statistics for all webhook endpoints. Statistics include total deliveries, success/failure counts, success rate, and a breakdown by event type.\n\n### Query Parameters\n\n|Parameter|Description|Default|\n|:--------------|----------|--------|\n|period|Statistics time window. Valid values: `24h`, `7d`, `30d`, `90d`|24h|",
        "operationId": "getWebhookStatistics",
        "summary": "Get Webhook Statistics"
      }
    },
    "/v3/register": {
      "post": {
        "operationId": "registerAccount",
        "tags": [
          "Registration"
        ],
        "summary": "Create a new SureDone account",
        "description": "Creates a new SureDone account from an email, password, and basic\ncontact details. On success, returns sign-in credentials so the\ncaller can transition the user into the app immediately.\n\nBehavioral notes:\n  * The endpoint is **unauthenticated**. No `X-Auth-*` headers are\n    required or honored.\n  * A 6-digit email verification code is dispatched to the supplied\n    email address. The account is created in an unverified state;\n    the holder verifies later via `POST /register/verify`.\n  * On a successful response, the account exists and the returned\n    credentials are immediately usable for subsequent API calls.\n    Email verification is not a precondition for sign-in.\n  * For storefront app install flows (Shopify, BigCommerce, and\n    similar), pass `isFromExternalAuthChannel: true` and `source`\n    set to the channel slug. The endpoint will provision a channel\n    instance for the new account in addition to the account itself.\n    In this mode, the post-registration verification email is the\n    only outbound message (no internal lifecycle events are fired).\n  * The generated username is derived from `preferredUsername`,\n    then `company`, then the email prefix, in that order. If none\n    yields a valid, available username, a short random suffix is\n    appended.\n\nRate limits:\n  * Per source IP: 5 successful or attempted registrations per hour.\n  * Global: 100 registrations per hour across all callers.\n\nOn registration failure after partial provisioning, the server\ncleans up incomplete state before returning. Callers may safely\nretry with the same payload after addressing the reported error.\n",
        "security": [],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RegisterRequest"
              },
              "examples": {
                "minimal": {
                  "summary": "Minimum required fields",
                  "value": {
                    "email": "jane@example.com",
                    "password": "S3cur3-P@ss!",
                    "firstName": "Jane",
                    "lastName": "Doe",
                    "company": "Acme Outfitters"
                  }
                },
                "storefrontAppInstall": {
                  "summary": "Signup from a Shopify/BigCommerce app install",
                  "value": {
                    "email": "owner@acme-store.example",
                    "password": "S3cur3-P@ss!",
                    "firstName": "Alex",
                    "lastName": "Rivera",
                    "company": "Acme Outfitters",
                    "preferredUsername": "acme-outfitters",
                    "isFromExternalAuthChannel": true,
                    "source": "shopify"
                  }
                },
                "fullProfile": {
                  "summary": "Signup with optional profile and analytics fields",
                  "value": {
                    "email": "jane@example.com",
                    "password": "S3cur3-P@ss!",
                    "firstName": "Jane",
                    "lastName": "Doe",
                    "company": "Acme Outfitters",
                    "preferredUsername": "acme-outfitters",
                    "businessPerson": "Jane Doe",
                    "phone": "+1-555-555-0100",
                    "timezone": "America/New_York",
                    "bio": "Outdoor gear, apparel, and accessories.",
                    "subscribeToNewsletter": true,
                    "subscribeToSMS": false,
                    "inPersonDemo": false,
                    "currentChannels": [
                      "ebay",
                      "amazon"
                    ],
                    "wantedChannels": [
                      "shopify"
                    ],
                    "actionsToDo": [
                      "bulk-import",
                      "automation"
                    ],
                    "skuCount": "1000-10000",
                    "ordersPerMonth": "100-500",
                    "gmvPerMonth": "10000-50000",
                    "primaryCategory": "outdoor",
                    "source": "organic",
                    "utmSource": "blog",
                    "utmMedium": "referral",
                    "utmCampaign": "spring-2026"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "Account created. The response contains sign-in tokens, the\nlegacy username/UID/API token, and a snapshot of the user\nprofile. The user is created in an unverified email state;\nverify via `POST /register/verify`.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RegisterSuccessResponse"
                },
                "examples": {
                  "created": {
                    "value": {
                      "result": "success",
                      "cognito": {
                        "AccessToken": "eyJraWQ…",
                        "ExpiresIn": 3600,
                        "IdToken": "eyJraWQ…",
                        "RefreshToken": "eyJjdH…",
                        "TokenType": "Bearer"
                      },
                      "legacy": {
                        "username": "acme-outfitters",
                        "userId": 686123,
                        "apiToken": "4AFA32F39D6B…"
                      },
                      "user": {
                        "email": "jane@example.com",
                        "firstName": "Jane",
                        "lastName": "Doe",
                        "company": "Acme Outfitters",
                        "emailVerified": false
                      }
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "Request validation failed. The `message` field contains a\nsemicolon-separated list of all validation errors.\n\nCommon causes:\n  * Missing or malformed `email`, `password`, `firstName`,\n    `lastName`, or `company`.\n  * Password does not satisfy complexity requirements\n    (at least 8 characters and no more than 256, one upper,\n    one lower, one digit, one symbol).\n  * `isFromExternalAuthChannel` is true but `source` is missing.\n  * `source` is set but is not a recognized channel slug.\n  * `preferredUsername` violates the username format\n    (2–30 characters; alphanumeric start/end; not purely\n    numeric; hyphens allowed in the middle).\n  * The derived username is not a valid subdomain.\n  * Request body is missing or not a JSON object.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "validation": {
                    "value": {
                      "result": "error",
                      "message": "A valid email address is required; Password must contain at least one uppercase letter"
                    }
                  },
                  "invalidJson": {
                    "value": {
                      "result": "error",
                      "message": "Invalid JSON payload"
                    }
                  },
                  "invalidSource": {
                    "value": {
                      "result": "error",
                      "message": "Invalid source: 'unknownChannel' is not a recognized channel. Valid values: ebay, amzn, shopify, ..."
                    }
                  }
                }
              }
            }
          },
          "405": {
            "description": "Method not allowed. Only `POST` is supported. The endpoint also\nreturns this when an unknown sub-path beneath `/register` is\nrequested.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "methodNotAllowed": {
                    "value": {
                      "result": "error",
                      "message": "Method not allowed"
                    }
                  }
                }
              }
            }
          },
          "409": {
            "description": "An account already exists for the supplied email address.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "duplicate": {
                    "value": {
                      "result": "error",
                      "message": "An account with this email already exists."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Rate limit exceeded. Either the per-source-IP or global hourly\nregistration limit has been reached. Retry after the limit\nwindow resets.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "rateLimited": {
                    "value": {
                      "result": "error",
                      "message": "Too many registration attempts. Please try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "The account could not be created. Any partial state is\ncleaned up before returning. The caller may retry.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "failed": {
                    "value": {
                      "result": "error",
                      "message": "Registration failed. Please try again."
                    }
                  }
                }
              }
            }
          },
          "503": {
            "description": "Registration is temporarily unavailable. Possible cases:\n  * Pre-flight checks (rate-limit store) are unavailable.\n  * The account was created but post-registration sign-in\n    could not complete. The caller can sign in via the\n    standard authentication flow shortly.\n  * The account was created but channel setup (for\n    `isFromExternalAuthChannel`) failed; sign in and\n    reconnect the channel manually.\n  * The account was created but provisioning is still\n    finishing; retry sign-in shortly.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "unavailable": {
                    "value": {
                      "result": "error",
                      "message": "Registration is temporarily unavailable. Please try again shortly."
                    }
                  },
                  "signInPending": {
                    "value": {
                      "result": "error",
                      "message": "Account created, but sign-in is temporarily unavailable. Please try signing in again shortly."
                    }
                  },
                  "channelSetupFailed": {
                    "value": {
                      "result": "error",
                      "message": "Account created, but channel setup failed. Please sign in and reconnect your channel."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/v3/register/verify": {
      "post": {
        "operationId": "verifyRegistrationEmail",
        "tags": [
          "Registration"
        ],
        "summary": "Verify a new account's email address",
        "description": "Marks the email address associated with a newly registered account\nas verified, using the 6-digit code sent during registration.\n\nBehavioral notes:\n  * The endpoint is **unauthenticated**.\n  * Codes are valid for 15 minutes after registration and may be\n    used at most once.\n  * Verification is not required to sign in or use the API; it\n    unlocks notifications, password reset, and other flows that\n    depend on a verified email of record.\n\nRate limits:\n  * Per source IP: 30 verification attempts per hour.\n  * Per email: 10 verification attempts per hour.\n",
        "security": [],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/VerifyRequest"
              },
              "examples": {
                "verify": {
                  "value": {
                    "email": "jane@example.com",
                    "code": "482103"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Email verified.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/VerifySuccessResponse"
                },
                "examples": {
                  "verified": {
                    "value": {
                      "result": "success",
                      "emailVerified": true
                    }
                  }
                }
              }
            }
          },
          "400": {
            "description": "The verification code is invalid, expired, malformed, or the\nemail address is missing or malformed.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "invalidCode": {
                    "value": {
                      "result": "error",
                      "message": "Invalid or expired verification code."
                    }
                  }
                }
              }
            }
          },
          "429": {
            "description": "Rate limit exceeded. Either the per-source-IP or per-email\nverification limit has been reached.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "rateLimited": {
                    "value": {
                      "result": "error",
                      "message": "Too many verification attempts. Please try again later."
                    }
                  }
                }
              }
            }
          },
          "500": {
            "description": "Verification could not complete due to a server error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "failed": {
                    "value": {
                      "result": "error",
                      "message": "Verification failed. Please try again."
                    }
                  }
                }
              }
            }
          },
          "503": {
            "description": "Verification is temporarily unavailable. Retry shortly.\n",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                },
                "examples": {
                  "unavailable": {
                    "value": {
                      "result": "error",
                      "message": "Verification is temporarily unavailable. Please try again shortly."
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "RegisterRequest": {
        "type": "object",
        "description": "Request payload for `POST /v3/register`. Captures the new account holder's identity and the marketing/installation context needed to provision the account.",
        "required": [
          "email",
          "password",
          "firstName",
          "lastName",
          "company"
        ],
        "properties": {
          "email": {
            "type": "string",
            "format": "email",
            "description": "Primary email address. Used as the account's email of record.",
            "example": "jane@example.com"
          },
          "password": {
            "type": "string",
            "format": "password",
            "minLength": 8,
            "maxLength": 256,
            "description": "Account password. Must be 8–256 characters and contain at least\none uppercase letter, one lowercase letter, one digit, and one\nnon-alphanumeric character.\n",
            "example": "S3cur3-P@ss!"
          },
          "firstName": {
            "type": "string",
            "minLength": 1,
            "description": "Primary user's given name.",
            "example": "Jane"
          },
          "lastName": {
            "type": "string",
            "minLength": 1,
            "description": "Primary user's family name.",
            "example": "Doe"
          },
          "company": {
            "type": "string",
            "minLength": 1,
            "description": "Organization name. Used to seed the organization profile and,\nif `preferredUsername` is not supplied, as a candidate for the\naccount username.\n",
            "example": "Acme Outfitters"
          },
          "preferredUsername": {
            "type": "string",
            "pattern": "^(?!\\d+$)[a-zA-Z0-9][a-zA-Z0-9-]{0,28}[a-zA-Z0-9]$",
            "minLength": 2,
            "maxLength": 30,
            "description": "Preferred account username. 2–30 characters; must start and\nend with an alphanumeric character; may contain hyphens in\nthe middle; must not be purely numeric. Becomes the account's\nsubdomain. If omitted or unavailable, a username is derived\nfrom `company`, then from the email prefix, with a random\nsuffix as a last resort.\n",
            "example": "acme-outfitters"
          },
          "isFromExternalAuthChannel": {
            "type": "boolean",
            "default": false,
            "description": "When true and `source` is supplied, the request is treated as\nan app-install registration originating from an external\nstorefront. A channel instance is provisioned for the supplied\n`source` after account creation.\n"
          },
          "source": {
            "type": "string",
            "description": "Channel slug (e.g. `shopify`, `bigcommerce`, `ebay`). Required\nwhen `isFromExternalAuthChannel` is true. Must be a recognized\nchannel; unknown values are rejected with a 400.\n",
            "example": "shopify"
          },
          "businessPerson": {
            "type": "string",
            "description": "Primary contact name to store on the organization profile.\nDefaults to \"`firstName` `lastName`\" when omitted.\n"
          },
          "phone": {
            "type": "string",
            "description": "Primary contact phone number."
          },
          "timezone": {
            "type": "string",
            "description": "IANA timezone name for the organization.",
            "example": "America/New_York"
          },
          "bio": {
            "type": "string",
            "description": "Short organization description for the profile."
          },
          "subscribeToNewsletter": {
            "type": "boolean",
            "default": false,
            "description": "Opt the user in to product newsletter emails."
          },
          "subscribeToSMS": {
            "type": "boolean",
            "default": false,
            "description": "Opt the user in to SMS notifications."
          },
          "inPersonDemo": {
            "type": "boolean",
            "default": false,
            "description": "Caller indicates the user requested an in-person demo."
          },
          "currentChannels": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Channels the user is currently selling on."
          },
          "wantedChannels": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Channels the user intends to sell on."
          },
          "actionsToDo": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Free-form list of onboarding intents."
          },
          "skuCount": {
            "type": "string",
            "description": "Approximate SKU count bucket."
          },
          "ordersPerMonth": {
            "type": "string",
            "description": "Approximate monthly order volume bucket."
          },
          "gmvPerMonth": {
            "type": "string",
            "description": "Approximate monthly GMV bucket."
          },
          "primaryCategory": {
            "type": "string",
            "description": "Primary product category the user sells in."
          },
          "affid": {
            "type": "string",
            "description": "Affiliate identifier."
          },
          "plan": {
            "type": "string",
            "description": "Plan slug requested at signup. When omitted, the account is\nplaced on the default trial plan.\n"
          },
          "utmCampaign": {
            "type": "string",
            "description": "Marketing attribution — `utm_campaign` value captured at signup."
          },
          "utmCampaignId": {
            "type": "string",
            "description": "Marketing attribution — campaign identifier (`utm_campaign_id`) captured at signup."
          },
          "utmSource": {
            "type": "string",
            "description": "Marketing attribution — `utm_source` value captured at signup."
          },
          "utmMedium": {
            "type": "string",
            "description": "Marketing attribution — `utm_medium` value captured at signup."
          },
          "utmAdGroupId": {
            "type": "string",
            "description": "Marketing attribution — `utm_adgroup_id` value (campaign ad group) captured at signup."
          },
          "utmKeyword": {
            "type": "string",
            "description": "Marketing attribution — `utm_keyword` value captured at signup."
          },
          "gclId": {
            "type": "string",
            "description": "Google click identifier."
          },
          "matchType": {
            "type": "string",
            "description": "Marketing attribution — keyword match type reported by the upstream ad network."
          },
          "distribution": {
            "type": "string",
            "description": "Marketing attribution — distribution network reported by the upstream ad network."
          },
          "adID": {
            "type": "string",
            "description": "Marketing attribution — ad creative identifier captured at signup."
          },
          "placement": {
            "type": "string",
            "description": "Marketing attribution — ad placement label captured at signup."
          },
          "adp": {
            "type": "string",
            "description": "Marketing attribution — `adp` parameter captured at signup."
          },
          "totalPoints": {
            "type": "integer",
            "description": "Qualification score from the marketing site."
          },
          "isAFit": {
            "type": "boolean",
            "description": "Qualification flag from the marketing site."
          }
        },
        "additionalProperties": false
      },
      "VerifyRequest": {
        "type": "object",
        "description": "Request payload for `POST /v3/register/verify`. Submitted by the new account holder after they receive the email verification code.",
        "required": [
          "email",
          "code"
        ],
        "properties": {
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address that received the verification code.",
            "example": "jane@example.com"
          },
          "code": {
            "type": "string",
            "pattern": "^[0-9]{6}$",
            "minLength": 6,
            "maxLength": 6,
            "description": "6-digit verification code from the registration email.",
            "example": "482103"
          }
        },
        "additionalProperties": false
      },
      "RegisterSuccessResponse": {
        "type": "object",
        "description": "Success payload returned by `POST /v3/register` when the account is created. Includes the identity token bundle plus the legacy API credentials needed for follow-up calls.",
        "required": [
          "result",
          "cognito",
          "legacy",
          "user"
        ],
        "properties": {
          "result": {
            "type": "string",
            "enum": [
              "success"
            ]
          },
          "cognito": {
            "type": "object",
            "description": "Federated identity tokens for the new account. The token shape\nmirrors the response of a successful sign-in: an access token\nfor API calls, an ID token for identity claims, a refresh\ntoken for renewing the access token, and the token lifetime.\n",
            "properties": {
              "AccessToken": {
                "type": "string"
              },
              "ExpiresIn": {
                "type": "integer"
              },
              "IdToken": {
                "type": "string"
              },
              "RefreshToken": {
                "type": "string"
              },
              "TokenType": {
                "type": "string"
              }
            }
          },
          "legacy": {
            "type": "object",
            "description": "Legacy API credentials for endpoints that pre-date federated auth.",
            "required": [
              "username",
              "userId",
              "apiToken"
            ],
            "properties": {
              "username": {
                "type": "string",
                "description": "The provisioned account username (also the subdomain)."
              },
              "userId": {
                "type": "integer",
                "description": "Numeric account identifier."
              },
              "apiToken": {
                "type": "string",
                "description": "Long-lived legacy API token. Pair with `X-Auth-User`\n(username) for v1 endpoints that accept token auth.\n"
              }
            }
          },
          "user": {
            "type": "object",
            "required": [
              "email",
              "firstName",
              "lastName",
              "company",
              "emailVerified"
            ],
            "properties": {
              "email": {
                "type": "string",
                "format": "email"
              },
              "firstName": {
                "type": "string"
              },
              "lastName": {
                "type": "string"
              },
              "company": {
                "type": "string"
              },
              "emailVerified": {
                "type": "boolean",
                "description": "Always `false` immediately after registration."
              }
            }
          }
        }
      },
      "VerifySuccessResponse": {
        "type": "object",
        "description": "Success payload returned by `POST /v3/register/verify` once the submitted code matches the one issued during registration.",
        "required": [
          "result",
          "emailVerified"
        ],
        "properties": {
          "result": {
            "type": "string",
            "enum": [
              "success"
            ]
          },
          "emailVerified": {
            "type": "boolean",
            "enum": [
              true
            ]
          }
        }
      },
      "ErrorResponse": {
        "type": "object",
        "description": "Generic error envelope returned by the public registration endpoints when the request is rejected (validation failure, duplicate email, invalid verification code, etc.).",
        "required": [
          "result",
          "message"
        ],
        "properties": {
          "result": {
            "type": "string",
            "enum": [
              "error"
            ]
          },
          "message": {
            "type": "string",
            "description": "Human-readable error message."
          }
        }
      },
      "InvalidParamsError": {
        "type": "object",
        "description": "Envelope returned by SureDone's strict-params middleware when a v3 request includes a query parameter the endpoint does not accept. The `failed` object is keyed by the failure index (0-based) and each entry carries a human-readable `message` enumerating the offending parameter and the valid parameter set for the endpoint.",
        "required": [
          "results"
        ],
        "properties": {
          "results": {
            "type": "object",
            "required": [
              "failed"
            ],
            "properties": {
              "failed": {
                "type": "object",
                "description": "Map of failure index (as a string key, starting at \"0\") to failure details. At least one entry is present.",
                "additionalProperties": {
                  "type": "object",
                  "required": [
                    "message"
                  ],
                  "properties": {
                    "message": {
                      "type": "string",
                      "description": "Human-readable failure description. For unknown query parameters, has the form `Invalid Params: <name> | Valid Params: <comma-separated valid params>`.",
                      "example": "Invalid Params: foo | Valid Params: debug, diff, user_id, page, internal, showFilters, sort, sortorder, notify, email, type, disableCache"
                    },
                    "code": {
                      "type": "integer",
                      "description": "Optional numeric error code; omitted when not provided by the middleware."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "responses": {
      "InvalidParams": {
        "description": "Request rejected by the strict-params middleware (an unknown query parameter was supplied). Returned by every v3 listing endpoint.",
        "content": {
          "application/json": {
            "schema": {
              "$ref": "#/components/schemas/InvalidParamsError"
            },
            "examples": {
              "unknownQueryParam": {
                "summary": "Unknown query parameter",
                "value": {
                  "results": {
                    "failed": {
                      "0": {
                        "message": "Invalid Params: foo | Valid Params: debug, diff, user_id, page, internal, showFilters, sort, sortorder, notify, email, type, disableCache"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "securitySchemes": {
      "apiUserToken": {
        "type": "apiKey",
        "in": "header",
        "name": "X-Auth-User",
        "description": "API username. Pair with `X-Auth-Token` for legacy token-based auth. Find both values at https://app.suredone.com/settings/organization/security."
      },
      "apiAuthToken": {
        "type": "apiKey",
        "in": "header",
        "name": "X-Auth-Token",
        "description": "API token. Pair with `X-Auth-User` for legacy token-based auth."
      }
    }
  }
}