BigCommerce · Schema

CreateReturnRequest

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
items array A collection of items to be returned.
comment string A comment provided to the merchant for review.
View JSON Schema on GitHub

JSON Schema

bigcommerce-createreturnrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateReturnRequest",
  "title": "CreateReturnRequest",
  "type": "object",
  "required": [
    "items"
  ],
  "properties": {
    "items": {
      "description": "A collection of items to be returned.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreateReturnRequestItem"
      }
    },
    "comment": {
      "description": "A comment provided to the merchant for review.",
      "type": "string"
    }
  },
  "x-internal": false
}