BigCommerce · Schema

Message

A simple string/type response for returning information.

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
text string
type string
View JSON Schema on GitHub

JSON Schema

bigcommerce-message-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Message",
  "title": "Message",
  "type": "object",
  "properties": {
    "text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 500
    },
    "type": {
      "type": "string",
      "enum": [
        "INFO",
        "WARNING",
        "ERROR"
      ]
    }
  },
  "required": [
    "text",
    "type"
  ],
  "description": "A simple string/type response for returning information.",
  "x-internal": false
}