magento · Schema

CategoryRequest

Request body for creating or updating a category.

Properties

Name Type Description
category object
View JSON Schema on GitHub

JSON Schema

magento-categoryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CategoryRequest",
  "title": "CategoryRequest",
  "type": "object",
  "description": "Request body for creating or updating a category.",
  "required": [
    "category"
  ],
  "properties": {
    "category": {
      "$ref": "#/components/schemas/Category"
    }
  }
}