BigCommerce · Schema

ContactFields

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS
View JSON Schema on GitHub

JSON Schema

bigcommerce-contactfields-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContactFields",
  "title": "ContactFields",
  "allOf": [
    {
      "properties": {
        "fullname": {
          "type": "string",
          "description": "Full name of the customer who is submitting the form."
        },
        "phone": {
          "type": "string",
          "description": "Customer\u2019s phone number, as submitted on the form."
        },
        "companyname": {
          "type": "string",
          "description": "Customer\u2019s submitted company name."
        },
        "orderno": {
          "type": "string",
          "description": "Customer\u2019s submitted order number."
        },
        "rma": {
          "type": "string",
          "description": "Customer\u2019s submitted RMA (Return Merchandise Authorization) number."
        }
      }
    }
  ],
  "type": "object"
}