commercetools · Schema

CategoryUpdate

Request body for updating a category.

CommerceComposable CommerceE-CommerceGraphQLRESTSDK

Properties

Name Type Description
version integer Current version for optimistic concurrency control.
actions array List of update actions to apply.
View JSON Schema on GitHub

JSON Schema

commercetools-categoryupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CategoryUpdate",
  "title": "CategoryUpdate",
  "type": "object",
  "description": "Request body for updating a category.",
  "required": [
    "version",
    "actions"
  ],
  "properties": {
    "version": {
      "type": "integer",
      "description": "Current version for optimistic concurrency control."
    },
    "actions": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "List of update actions to apply."
    }
  }
}