BigCommerce · Schema

image_url

E-CommerceRetailCatalogOrdersCheckoutPaymentsSaaS

Properties

Name Type Description
image_url string Image URL used for this category on the storefront. Images can be uploaded using form file post to `/categories/{categoryId}/image`, or by providing a publicly accessible URL in this field. An image e
View JSON Schema on GitHub

JSON Schema

bigcommerce-image-url-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/image_url",
  "title": "image_url",
  "type": "object",
  "properties": {
    "image_url": {
      "type": "string",
      "description": "Image URL used for this category on the storefront. Images can be uploaded using form file post to `/categories/{categoryId}/image`, or by providing a publicly accessible URL in this field. An image extension like .jpg or .png is required.\n",
      "example": "https://cdn8.bigcommerce.com/s-123456/product_images/d/fakeimage.png",
      "x-url": true
    }
  }
}