# `catalog.category.create` Create a category (flat compliance taxonomy; taksitCap = BDDK installment cap). - **scope**: `catalog:write` - **storefront-visible** (bumps the catalog generation): no - **destructive**: no ## Payload | field | type | required | notes | |---|---|---|---| | `name` | string (≤80 chars) | yes | | | `taksitCap` | integer (0..12) | no | | | `position` | integer (0..9007199254740991) | no | | ### JSON Schema ```json { "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 80 }, "taksitCap": { "type": "integer", "minimum": 0, "maximum": 12 }, "position": { "type": "integer", "minimum": 0, "maximum": 9007199254740991 } }, "required": [ "name" ], "additionalProperties": false } ```