{
  "openapi": "3.1.0",
  "info": {
    "title": "Alga PSA API",
    "version": "0.1.0",
    "description": "OpenAPI specification generated from registered route metadata."
  },
  "servers": [
    {
      "url": "https://algapsa.com",
      "description": "Production"
    },
    {
      "url": "http://localhost:3000",
      "description": "Local development"
    }
  ],
  "tags": [
    {
      "name": "Boards"
    },
    {
      "name": "Products"
    },
    {
      "name": "Projects"
    },
    {
      "name": "Service Catalog"
    },
    {
      "name": "Service Categories"
    },
    {
      "name": "Service Types"
    },
    {
      "name": "Services"
    },
    {
      "name": "Statuses"
    },
    {
      "name": "Storage"
    },
    {
      "name": "admin"
    },
    {
      "name": "assets"
    },
    {
      "name": "auth"
    },
    {
      "name": "automation"
    },
    {
      "name": "billing"
    },
    {
      "name": "billing-analytics"
    },
    {
      "name": "categories"
    },
    {
      "name": "chat"
    },
    {
      "name": "client-contract-lines"
    },
    {
      "name": "clients"
    },
    {
      "name": "contacts"
    },
    {
      "name": "contract-line-templates"
    },
    {
      "name": "contract-lines"
    },
    {
      "name": "contracts"
    },
    {
      "name": "documents"
    },
    {
      "name": "email"
    },
    {
      "name": "ext"
    },
    {
      "name": "extensions"
    },
    {
      "name": "feature-access"
    },
    {
      "name": "feature-flags"
    },
    {
      "name": "files"
    },
    {
      "name": "financial"
    },
    {
      "name": "health"
    },
    {
      "name": "healthz"
    },
    {
      "name": "installs"
    },
    {
      "name": "integrations"
    },
    {
      "name": "invoices"
    },
    {
      "name": "meta"
    },
    {
      "name": "permission-checks"
    },
    {
      "name": "permissions"
    },
    {
      "name": "projects"
    },
    {
      "name": "quickbooks"
    },
    {
      "name": "quotes"
    },
    {
      "name": "rbac"
    },
    {
      "name": "readyz"
    },
    {
      "name": "roles"
    },
    {
      "name": "schedules"
    },
    {
      "name": "tags"
    },
    {
      "name": "teams"
    },
    {
      "name": "test-auth"
    },
    {
      "name": "tickets"
    },
    {
      "name": "time-entries"
    },
    {
      "name": "time-periods"
    },
    {
      "name": "time-sheets"
    },
    {
      "name": "user"
    },
    {
      "name": "user-roles"
    },
    {
      "name": "users"
    },
    {
      "name": "webhooks"
    },
    {
      "name": "workflows"
    }
  ],
  "components": {
    "securitySchemes": {
      "ApiKeyAuth": {
        "type": "apiKey",
        "in": "header",
        "name": "x-api-key"
      }
    },
    "schemas": {
      "ErrorResponse": {
        "type": "object",
        "properties": {
          "error": {
            "type": "object",
            "properties": {
              "code": {
                "type": "string"
              },
              "message": {
                "type": "string"
              },
              "details": {}
            },
            "required": [
              "code",
              "message"
            ]
          }
        },
        "required": [
          "error"
        ]
      },
      "PlaceholderObject": {
        "type": "object",
        "properties": {}
      },
      "BoardIdParams": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Board UUID."
          }
        },
        "required": [
          "id"
        ]
      },
      "BoardApiResponse": {
        "type": "object",
        "properties": {
          "board_id": {
            "type": "string",
            "format": "uuid"
          },
          "board_name": {
            "type": "string"
          },
          "description": {
            "type": [
              "string",
              "null"
            ]
          },
          "display_order": {
            "type": "number"
          },
          "is_default": {
            "type": "boolean"
          },
          "is_inactive": {
            "type": "boolean"
          },
          "category_type": {
            "type": [
              "string",
              "null"
            ],
            "enum": [
              "custom",
              "itil"
            ]
          },
          "priority_type": {
            "type": [
              "string",
              "null"
            ],
            "enum": [
              "custom",
              "itil"
            ]
          },
          "display_itil_impact": {
            "type": [
              "boolean",
              "null"
            ]
          },
          "display_itil_urgency": {
            "type": [
              "boolean",
              "null"
            ]
          },
          "default_assigned_to": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "inbound_reply_reopen_enabled": {
            "type": "boolean"
          },
          "inbound_reply_reopen_cutoff_hours": {
            "type": "integer"
          },
          "inbound_reply_reopen_status_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "inbound_reply_ai_ack_suppression_enabled": {
            "type": "boolean"
          },
          "enable_live_ticket_timer": {
            "type": [
              "boolean",
              "null"
            ]
          },
          "tenant": {
            "type": "string",
            "format": "uuid"
          }
        },
        "required": [
          "board_id",
          "board_name",
          "description",
          "display_order",
          "is_default",
          "is_inactive",
          "category_type",
          "priority_type",
          "display_itil_impact",
          "display_itil_urgency",
          "default_assigned_to",
          "enable_live_ticket_timer",
          "tenant"
        ]
      },
      "BoardEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/BoardApiResponse"
          }
        },
        "required": [
          "data"
        ]
      },
      "BoardListEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/BoardApiResponse"
            }
          }
        },
        "required": [
          "data"
        ]
      },
      "BoardCreateRequest": {
        "type": "object",
        "properties": {
          "board_name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "description": {
            "type": "string",
            "maxLength": 1000
          },
          "is_default": {
            "type": "boolean"
          },
          "is_inactive": {
            "type": "boolean"
          },
          "category_type": {
            "type": "string",
            "enum": [
              "custom",
              "itil"
            ]
          },
          "priority_type": {
            "type": "string",
            "enum": [
              "custom",
              "itil"
            ]
          },
          "default_assigned_to": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "display_itil_impact": {
            "type": "boolean"
          },
          "display_itil_urgency": {
            "type": "boolean"
          },
          "enable_live_ticket_timer": {
            "type": "boolean"
          }
        },
        "required": [
          "board_name"
        ],
        "description": "Payload for creating a new board."
      },
      "BoardUpdateRequest": {
        "type": "object",
        "properties": {
          "board_name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "description": {
            "type": "string",
            "maxLength": 1000
          },
          "is_default": {
            "type": "boolean"
          },
          "is_inactive": {
            "type": "boolean"
          },
          "category_type": {
            "type": "string",
            "enum": [
              "custom",
              "itil"
            ]
          },
          "priority_type": {
            "type": "string",
            "enum": [
              "custom",
              "itil"
            ]
          },
          "default_assigned_to": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "display_itil_impact": {
            "type": "boolean"
          },
          "display_itil_urgency": {
            "type": "boolean"
          },
          "enable_live_ticket_timer": {
            "type": "boolean"
          }
        },
        "description": "Payload for updating a board. All fields are optional."
      },
      "StatusIdParams": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Status UUID."
          }
        },
        "required": [
          "id"
        ]
      },
      "StatusApiResponse": {
        "type": "object",
        "properties": {
          "status_id": {
            "type": "string",
            "format": "uuid"
          },
          "name": {
            "type": "string"
          },
          "status_type": {
            "type": "string",
            "enum": [
              "ticket",
              "project",
              "project_task",
              "interaction"
            ]
          },
          "order_number": {
            "type": "number"
          },
          "is_closed": {
            "type": "boolean"
          },
          "is_default": {
            "type": [
              "boolean",
              "null"
            ]
          },
          "item_type": {
            "type": [
              "string",
              "null"
            ]
          },
          "standard_status_id": {
            "type": [
              "string",
              "null"
            ]
          },
          "is_custom": {
            "type": [
              "boolean",
              "null"
            ]
          },
          "tenant": {
            "type": "string",
            "format": "uuid"
          }
        },
        "required": [
          "status_id",
          "name",
          "status_type",
          "order_number",
          "is_closed",
          "is_default",
          "item_type",
          "standard_status_id",
          "is_custom",
          "tenant"
        ]
      },
      "StatusEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/StatusApiResponse"
          }
        },
        "required": [
          "data"
        ]
      },
      "StatusListEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/StatusApiResponse"
            }
          }
        },
        "required": [
          "data"
        ]
      },
      "StatusCreateRequest": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "status_type": {
            "type": "string",
            "enum": [
              "ticket",
              "project",
              "project_task",
              "interaction"
            ]
          },
          "board_id": {
            "type": "string",
            "format": "uuid"
          },
          "is_closed": {
            "type": "boolean"
          },
          "is_default": {
            "type": "boolean"
          },
          "order_number": {
            "type": "integer",
            "minimum": 0
          },
          "color": {
            "type": "string",
            "pattern": "^#[0-9A-Fa-f]{6}$"
          },
          "icon": {
            "type": "string",
            "maxLength": 50
          }
        },
        "required": [
          "name",
          "status_type"
        ],
        "description": "Payload for creating a new status. For ticket statuses, board_id is required."
      },
      "StatusUpdateRequest": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "is_closed": {
            "type": "boolean"
          },
          "is_default": {
            "type": "boolean"
          },
          "order_number": {
            "type": "integer",
            "minimum": 0
          },
          "color": {
            "type": "string",
            "pattern": "^#[0-9A-Fa-f]{6}$"
          },
          "icon": {
            "type": "string",
            "maxLength": 50
          }
        },
        "description": "Payload for updating a status. All fields are optional."
      },
      "ServiceCategory": {
        "type": "object",
        "properties": {
          "tenant": {
            "type": "string",
            "format": "uuid"
          },
          "category_id": {
            "type": "string",
            "format": "uuid"
          },
          "category_name": {
            "type": "string"
          },
          "description": {
            "type": [
              "string",
              "null"
            ]
          },
          "display_order": {
            "type": "integer",
            "default": 0
          },
          "is_active": {
            "type": "boolean"
          },
          "created_at": {
            "type": "string",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "format": "date-time"
          },
          "created_by": {
            "type": "string",
            "format": "uuid"
          },
          "updated_by": {
            "type": "string",
            "format": "uuid"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "tenant",
          "category_id",
          "category_name",
          "is_active",
          "created_at",
          "updated_at",
          "created_by",
          "updated_by"
        ],
        "description": "Service category resource."
      },
      "ServiceCategoryCreateRequest": {
        "type": "object",
        "properties": {
          "category_name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "description": {
            "type": "string",
            "maxLength": 1000
          },
          "is_active": {
            "type": "boolean"
          }
        },
        "required": [
          "category_name"
        ],
        "description": "Payload for creating a service category."
      },
      "ServiceCategoryListQuery": {
        "type": "object",
        "properties": {
          "search": {
            "type": "string"
          },
          "is_active": {
            "type": "boolean"
          },
          "page": {
            "type": "integer",
            "minimum": 1
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100
          }
        },
        "description": "Query parameters for listing service categories."
      },
      "PaginatedServiceCategoryResponse": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceCategory"
            }
          },
          "pagination": {
            "type": "object",
            "properties": {
              "page": {
                "type": "integer"
              },
              "limit": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              },
              "totalPages": {
                "type": "integer"
              },
              "hasNext": {
                "type": "boolean"
              },
              "hasPrev": {
                "type": "boolean"
              }
            },
            "required": [
              "page",
              "limit",
              "total",
              "totalPages",
              "hasNext",
              "hasPrev"
            ]
          },
          "meta": {
            "type": "object",
            "additionalProperties": {}
          }
        },
        "required": [
          "data",
          "pagination"
        ]
      },
      "ServiceIdParams": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Service UUID."
          }
        },
        "required": [
          "id"
        ]
      },
      "ServicePrice": {
        "type": "object",
        "properties": {
          "currency_code": {
            "type": "string",
            "minLength": 3,
            "maxLength": 3
          },
          "rate": {
            "type": "number"
          }
        },
        "required": [
          "currency_code",
          "rate"
        ]
      },
      "ServiceCatalogEntry": {
        "type": "object",
        "properties": {
          "service_id": {
            "type": "string",
            "format": "uuid"
          },
          "tenant": {
            "type": "string",
            "format": "uuid"
          },
          "service_name": {
            "type": "string"
          },
          "custom_service_type_id": {
            "type": "string",
            "format": "uuid"
          },
          "billing_method": {
            "type": "string",
            "enum": [
              "fixed",
              "hourly",
              "usage"
            ]
          },
          "default_rate": {
            "type": "number"
          },
          "unit_of_measure": {
            "type": "string"
          },
          "category_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "tax_rate_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "description": {
            "type": [
              "string",
              "null"
            ]
          },
          "item_kind": {
            "type": "string",
            "enum": [
              "service",
              "product"
            ]
          },
          "is_active": {
            "type": "boolean"
          },
          "sku": {
            "type": [
              "string",
              "null"
            ]
          },
          "cost": {
            "type": [
              "number",
              "null"
            ]
          },
          "cost_currency": {
            "type": [
              "string",
              "null"
            ],
            "minLength": 3,
            "maxLength": 3
          },
          "vendor": {
            "type": [
              "string",
              "null"
            ]
          },
          "manufacturer": {
            "type": [
              "string",
              "null"
            ]
          },
          "product_category": {
            "type": [
              "string",
              "null"
            ]
          },
          "is_license": {
            "type": "boolean"
          },
          "license_term": {
            "type": [
              "string",
              "null"
            ]
          },
          "license_billing_cadence": {
            "type": [
              "string",
              "null"
            ]
          },
          "service_type_name": {
            "type": "string"
          },
          "prices": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServicePrice"
            }
          }
        },
        "required": [
          "service_id",
          "tenant",
          "service_name",
          "custom_service_type_id",
          "billing_method",
          "default_rate",
          "unit_of_measure"
        ],
        "description": "Service catalog entry."
      },
      "ServiceEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ServiceCatalogEntry"
          },
          "meta": {
            "type": "object",
            "additionalProperties": {}
          }
        },
        "required": [
          "data"
        ]
      },
      "PaginatedServiceEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceCatalogEntry"
            }
          },
          "pagination": {
            "type": "object",
            "properties": {
              "page": {
                "type": "integer"
              },
              "limit": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              },
              "totalPages": {
                "type": "integer"
              },
              "hasNext": {
                "type": "boolean"
              },
              "hasPrev": {
                "type": "boolean"
              }
            },
            "required": [
              "page",
              "limit",
              "total",
              "totalPages",
              "hasNext",
              "hasPrev"
            ]
          },
          "meta": {
            "type": "object",
            "additionalProperties": {}
          }
        },
        "required": [
          "data",
          "pagination"
        ]
      },
      "ProductIdParams": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Product UUID."
          }
        },
        "required": [
          "id"
        ]
      },
      "ProductPrice": {
        "type": "object",
        "properties": {
          "currency_code": {
            "type": "string",
            "minLength": 3,
            "maxLength": 3
          },
          "rate": {
            "type": "number"
          }
        },
        "required": [
          "currency_code",
          "rate"
        ]
      },
      "ProductCatalogEntry": {
        "type": "object",
        "properties": {
          "service_id": {
            "type": "string",
            "format": "uuid"
          },
          "tenant": {
            "type": "string",
            "format": "uuid"
          },
          "service_name": {
            "type": "string"
          },
          "custom_service_type_id": {
            "type": "string",
            "format": "uuid"
          },
          "billing_method": {
            "type": "string",
            "enum": [
              "usage"
            ]
          },
          "default_rate": {
            "type": "number"
          },
          "unit_of_measure": {
            "type": "string"
          },
          "category_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "tax_rate_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "description": {
            "type": [
              "string",
              "null"
            ]
          },
          "item_kind": {
            "type": "string",
            "enum": [
              "product"
            ]
          },
          "is_active": {
            "type": "boolean"
          },
          "sku": {
            "type": [
              "string",
              "null"
            ]
          },
          "cost": {
            "type": [
              "number",
              "null"
            ]
          },
          "cost_currency": {
            "type": [
              "string",
              "null"
            ],
            "minLength": 3,
            "maxLength": 3
          },
          "vendor": {
            "type": [
              "string",
              "null"
            ]
          },
          "manufacturer": {
            "type": [
              "string",
              "null"
            ]
          },
          "product_category": {
            "type": [
              "string",
              "null"
            ]
          },
          "is_license": {
            "type": "boolean"
          },
          "license_term": {
            "type": [
              "string",
              "null"
            ]
          },
          "license_billing_cadence": {
            "type": [
              "string",
              "null"
            ]
          },
          "service_type_name": {
            "type": "string"
          },
          "prices": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductPrice"
            }
          }
        },
        "required": [
          "service_id",
          "tenant",
          "service_name",
          "custom_service_type_id",
          "billing_method",
          "default_rate",
          "unit_of_measure",
          "item_kind"
        ],
        "description": "Product catalog entry."
      },
      "ProductEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProductCatalogEntry"
          },
          "meta": {
            "type": "object",
            "additionalProperties": {}
          }
        },
        "required": [
          "data"
        ]
      },
      "PaginatedProductEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProductCatalogEntry"
            }
          },
          "pagination": {
            "type": "object",
            "properties": {
              "page": {
                "type": "integer"
              },
              "limit": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              },
              "totalPages": {
                "type": "integer"
              },
              "hasNext": {
                "type": "boolean"
              },
              "hasPrev": {
                "type": "boolean"
              }
            },
            "required": [
              "page",
              "limit",
              "total",
              "totalPages",
              "hasNext",
              "hasPrev"
            ]
          },
          "meta": {
            "type": "object",
            "additionalProperties": {}
          }
        },
        "required": [
          "data",
          "pagination"
        ]
      },
      "ServiceTypeIdParams": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Service type UUID."
          }
        },
        "required": [
          "id"
        ]
      },
      "ServiceTypeListQuery": {
        "type": "object",
        "properties": {
          "search": {
            "type": "string"
          },
          "billing_method": {
            "type": "string",
            "enum": [
              "fixed",
              "hourly",
              "usage"
            ]
          },
          "is_active": {
            "type": "boolean"
          },
          "page": {
            "type": "integer",
            "minimum": 1
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100
          }
        }
      },
      "ServiceTypeResource": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "tenant": {
            "type": "string",
            "format": "uuid"
          },
          "name": {
            "type": "string"
          },
          "billing_method": {
            "type": "string",
            "enum": [
              "fixed",
              "hourly",
              "usage"
            ]
          },
          "is_active": {
            "type": "boolean"
          },
          "description": {
            "type": [
              "string",
              "null"
            ]
          },
          "order_number": {
            "type": "integer"
          },
          "created_at": {
            "type": "string",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "id",
          "tenant",
          "name",
          "billing_method",
          "is_active",
          "order_number",
          "created_at",
          "updated_at"
        ],
        "description": "Tenant-specific service type."
      },
      "ServiceTypeEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ServiceTypeResource"
          },
          "meta": {
            "type": "object",
            "additionalProperties": {}
          }
        },
        "required": [
          "data"
        ]
      },
      "PaginatedServiceTypeEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ServiceTypeResource"
            }
          },
          "pagination": {
            "type": "object",
            "properties": {
              "page": {
                "type": "integer"
              },
              "limit": {
                "type": "integer"
              },
              "total": {
                "type": "integer"
              },
              "totalPages": {
                "type": "integer"
              },
              "hasNext": {
                "type": "boolean"
              },
              "hasPrev": {
                "type": "boolean"
              }
            },
            "required": [
              "page",
              "limit",
              "total",
              "totalPages",
              "hasNext",
              "hasPrev"
            ]
          },
          "meta": {
            "type": "object",
            "additionalProperties": {}
          }
        },
        "required": [
          "data",
          "pagination"
        ]
      },
      "ProjectIdParams": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Project UUID."
          }
        },
        "required": [
          "id"
        ]
      },
      "ProjectPhaseTaskParams": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid",
            "description": "Project UUID."
          },
          "phaseId": {
            "type": "string",
            "format": "uuid",
            "description": "Project phase UUID."
          }
        },
        "required": [
          "id",
          "phaseId"
        ]
      },
      "ProjectTaskIdParams": {
        "type": "object",
        "properties": {
          "taskId": {
            "type": "string",
            "format": "uuid",
            "description": "Project task UUID."
          }
        },
        "required": [
          "taskId"
        ]
      },
      "ProjectTaskApiResponse": {
        "type": "object",
        "properties": {
          "task_id": {
            "type": "string",
            "format": "uuid"
          },
          "phase_id": {
            "type": "string",
            "format": "uuid"
          },
          "task_name": {
            "type": "string"
          },
          "description": {
            "type": [
              "string",
              "null"
            ]
          },
          "assigned_to": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "estimated_hours": {
            "type": [
              "number",
              "null"
            ]
          },
          "actual_hours": {
            "type": [
              "number",
              "null"
            ]
          },
          "project_status_mapping_id": {
            "type": "string",
            "format": "uuid"
          },
          "due_date": {
            "type": [
              "string",
              "null"
            ],
            "format": "date-time"
          },
          "priority_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "task_type_key": {
            "type": "string"
          },
          "wbs_code": {
            "type": "string"
          },
          "order_key": {
            "type": "string"
          },
          "created_at": {
            "type": "string",
            "format": "date-time"
          },
          "updated_at": {
            "type": "string",
            "format": "date-time"
          },
          "tenant": {
            "type": "string",
            "format": "uuid"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "task_id",
          "phase_id",
          "task_name",
          "description",
          "assigned_to",
          "estimated_hours",
          "actual_hours",
          "project_status_mapping_id",
          "priority_id",
          "task_type_key",
          "wbs_code",
          "created_at",
          "updated_at",
          "tenant"
        ]
      },
      "ProjectTaskEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "$ref": "#/components/schemas/ProjectTaskApiResponse"
          }
        },
        "required": [
          "data"
        ]
      },
      "ProjectTaskListEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProjectTaskApiResponse"
            }
          }
        },
        "required": [
          "data"
        ]
      },
      "ProjectTaskStatusMappingApiResponse": {
        "type": "object",
        "properties": {
          "project_status_mapping_id": {
            "type": "string",
            "format": "uuid"
          },
          "project_id": {
            "type": "string",
            "format": "uuid"
          },
          "status_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "standard_status_id": {
            "type": [
              "string",
              "null"
            ],
            "format": "uuid"
          },
          "is_standard": {
            "type": "boolean"
          },
          "custom_name": {
            "type": [
              "string",
              "null"
            ]
          },
          "display_order": {
            "type": "number"
          },
          "is_visible": {
            "type": "boolean"
          },
          "tenant": {
            "type": "string",
            "format": "uuid"
          },
          "status_name": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "is_closed": {
            "type": "boolean"
          }
        },
        "required": [
          "project_status_mapping_id",
          "project_id",
          "is_standard",
          "custom_name",
          "display_order",
          "is_visible",
          "tenant",
          "status_name",
          "name",
          "is_closed"
        ]
      },
      "ProjectTaskStatusMappingListEnvelope": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProjectTaskStatusMappingApiResponse"
            }
          }
        },
        "required": [
          "data"
        ]
      },
      "ProjectTaskUpdateRequest": {
        "type": "object",
        "properties": {
          "task_name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "description": {
            "type": "string"
          },
          "assigned_to": {
            "type": "string",
            "format": "uuid"
          },
          "estimated_hours": {
            "type": "number",
            "minimum": 0
          },
          "due_date": {
            "type": "string",
            "format": "date-time"
          },
          "priority_id": {
            "type": "string",
            "format": "uuid"
          },
          "task_type_key": {
            "type": "string",
            "default": "general"
          },
          "project_status_mapping_id": {
            "type": "string",
            "format": "uuid"
          },
          "wbs_code": {
            "type": "string"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "description": "Payload for updating a project task. To change task status, send project_status_mapping_id as a UUID. This endpoint does not accept project_id, phase_id, or human-readable status names."
      },
      "ProjectTaskCreateRequest": {
        "type": "object",
        "properties": {
          "task_name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 255
          },
          "description": {
            "type": "string"
          },
          "assigned_to": {
            "type": "string",
            "format": "uuid"
          },
          "estimated_hours": {
            "type": "number",
            "minimum": 0
          },
          "due_date": {
            "type": "string",
            "format": "date-time"
          },
          "priority_id": {
            "type": "string",
            "format": "uuid"
          },
          "task_type_key": {
            "type": "string",
            "default": "general"
          },
          "project_status_mapping_id": {
            "type": "string",
            "format": "uuid"
          },
          "wbs_code": {
            "type": "string"
          },
          "tags": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "task_name",
          "project_status_mapping_id"
        ],
        "description": "Payload for creating a project task within a phase. Provide project_status_mapping_id as a UUID from the project task status mappings endpoint. The phaseId path parameter selects which phase will receive the task."
      },
      "StoragePutRequest": {
        "type": "object",
        "properties": {
          "value": {},
          "metadata": {
            "type": "object",
            "additionalProperties": {}
          },
          "ttlSeconds": {
            "type": "integer",
            "exclusiveMinimum": 0
          },
          "ifRevision": {
            "type": "integer",
            "minimum": 0
          },
          "schemaVersion": {
            "type": "integer",
            "exclusiveMinimum": 0
          }
        }
      },
      "StoragePutResponse": {
        "type": "object",
        "properties": {
          "namespace": {
            "type": "string"
          },
          "key": {
            "type": "string"
          },
          "revision": {
            "type": "integer",
            "exclusiveMinimum": 0
          },
          "ttlExpiresAt": {
            "type": [
              "string",
              "null"
            ],
            "format": "date-time"
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          },
          "updatedAt": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "namespace",
          "key",
          "revision",
          "ttlExpiresAt",
          "createdAt",
          "updatedAt"
        ]
      },
      "StorageGetResponse": {
        "type": "object",
        "properties": {
          "namespace": {
            "type": "string"
          },
          "key": {
            "type": "string"
          },
          "revision": {
            "type": "integer",
            "exclusiveMinimum": 0
          },
          "value": {},
          "metadata": {
            "type": "object",
            "additionalProperties": {}
          },
          "ttlExpiresAt": {
            "type": [
              "string",
              "null"
            ],
            "format": "date-time"
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          },
          "updatedAt": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "namespace",
          "key",
          "revision",
          "metadata",
          "ttlExpiresAt",
          "createdAt",
          "updatedAt"
        ]
      },
      "StorageListQuery": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 100
          },
          "cursor": {
            "type": "string"
          },
          "keyPrefix": {
            "type": "string",
            "maxLength": 256
          },
          "includeValues": {
            "type": "boolean"
          },
          "includeMetadata": {
            "type": "boolean"
          }
        }
      },
      "StorageListItem": {
        "type": "object",
        "properties": {
          "namespace": {
            "type": "string"
          },
          "key": {
            "type": "string"
          },
          "revision": {
            "type": "integer",
            "exclusiveMinimum": 0
          },
          "value": {},
          "metadata": {
            "type": "object",
            "additionalProperties": {}
          },
          "ttlExpiresAt": {
            "type": [
              "string",
              "null"
            ],
            "format": "date-time"
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          },
          "updatedAt": {
            "type": "string",
            "format": "date-time"
          }
        },
        "required": [
          "namespace",
          "key",
          "revision",
          "ttlExpiresAt",
          "createdAt",
          "updatedAt"
        ]
      },
      "StorageListResponse": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/StorageListItem"
            }
          },
          "nextCursor": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "items",
          "nextCursor"
        ]
      },
      "StorageBulkPutRequest": {
        "type": "object",
        "properties": {
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string",
                  "minLength": 1,
                  "maxLength": 256
                },
                "value": {},
                "metadata": {
                  "type": "object",
                  "additionalProperties": {}
                },
                "ttlSeconds": {
                  "type": "integer",
                  "exclusiveMinimum": 0
                },
                "ifRevision": {
                  "type": "integer",
                  "minimum": 0
                },
                "schemaVersion": {
                  "type": "integer",
                  "exclusiveMinimum": 0
                }
              },
              "required": [
                "key"
              ]
            },
            "minItems": 1
          }
        },
        "required": [
          "items"
        ]
      },
      "StorageBulkPutResponse": {
        "type": "object",
        "properties": {
          "namespace": {
            "type": "string"
          },
          "items": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string"
                },
                "revision": {
                  "type": "integer",
                  "exclusiveMinimum": 0
                },
                "ttlExpiresAt": {
                  "type": [
                    "string",
                    "null"
                  ],
                  "format": "date-time"
                }
              },
              "required": [
                "key",
                "revision",
                "ttlExpiresAt"
              ]
            }
          }
        },
        "required": [
          "namespace",
          "items"
        ]
      },
      "StorageNamespaceParams": {
        "type": "object",
        "properties": {
          "namespace": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          }
        },
        "required": [
          "namespace"
        ]
      },
      "StorageNamespaceKeyParams": {
        "allOf": [
          {
            "$ref": "#/components/schemas/StorageNamespaceParams"
          },
          {
            "type": "object",
            "properties": {
              "key": {
                "type": "string",
                "minLength": 1,
                "maxLength": 256
              }
            },
            "required": [
              "key"
            ]
          }
        ]
      },
      "StorageIfRevisionHeader": {
        "type": "object",
        "properties": {
          "if-revision-match": {
            "type": "string"
          }
        }
      },
      "StorageDeleteQuery": {
        "type": "object",
        "properties": {
          "ifRevision": {
            "type": [
              "integer",
              "null"
            ],
            "minimum": 0
          }
        }
      }
    },
    "parameters": {}
  },
  "paths": {
    "/api/v1/boards": {
      "get": {
        "summary": "List boards",
        "description": "Returns a paginated list of ticket boards for the current tenant. Use this to discover valid board_id values before creating tickets or statuses.",
        "tags": [
          "Boards"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "List Boards",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": false
        },
        "responses": {
          "200": {
            "description": "Boards returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BoardListEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "Create board",
        "description": "Creates a new ticket board. After creating a board, create at least one status for it via POST /api/v1/statuses so tickets can be assigned to the board.",
        "tags": [
          "Boards"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Create Board",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": true
        },
        "requestBody": {
          "description": "Board creation payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BoardCreateRequest"
              },
              "description": "Board creation payload."
            }
          }
        },
        "responses": {
          "201": {
            "description": "Board created successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BoardEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/boards/{id}": {
      "get": {
        "summary": "Get board by ID",
        "description": "Returns a single board by its UUID.",
        "tags": [
          "Boards"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Get Board",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Board UUID."
            },
            "required": true,
            "description": "Board UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Board returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BoardEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Board not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "Update board",
        "description": "Updates an existing board. All fields are optional — only send the fields you want to change.",
        "tags": [
          "Boards"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Update Board",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Board UUID."
            },
            "required": true,
            "description": "Board UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "requestBody": {
          "description": "Board update payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/BoardUpdateRequest"
              },
              "description": "Board update payload."
            }
          }
        },
        "responses": {
          "200": {
            "description": "Board updated successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/BoardEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Board not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Delete board",
        "description": "Deletes a board by its UUID. This will fail if the board has associated tickets.",
        "tags": [
          "Boards"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Delete Board",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Board UUID."
            },
            "required": true,
            "description": "Board UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "204": {
            "description": "Board deleted successfully."
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Board not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/statuses": {
      "get": {
        "summary": "List statuses",
        "description": "Returns a paginated list of statuses. For ticket statuses, filter by type=ticket and board_id to get statuses that belong to a specific board. The status_id must belong to the same board_id when creating tickets.",
        "tags": [
          "Statuses"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "List Statuses",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": false
        },
        "responses": {
          "200": {
            "description": "Statuses returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StatusListEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "Create status",
        "description": "Creates a new status. For ticket statuses, board_id is required. The status_type must be one of: ticket, project, project_task, interaction.",
        "tags": [
          "Statuses"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Create Status",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": true
        },
        "requestBody": {
          "description": "Status creation payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StatusCreateRequest"
              },
              "description": "Status creation payload."
            }
          }
        },
        "responses": {
          "201": {
            "description": "Status created successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StatusEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/statuses/{id}": {
      "get": {
        "summary": "Get status by ID",
        "description": "Returns a single status by its UUID.",
        "tags": [
          "Statuses"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Get Status",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Status UUID."
            },
            "required": true,
            "description": "Status UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Status returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StatusEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Status not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "Update status",
        "description": "Updates an existing status. All fields are optional — only send the fields you want to change.",
        "tags": [
          "Statuses"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Update Status",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Status UUID."
            },
            "required": true,
            "description": "Status UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "requestBody": {
          "description": "Status update payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StatusUpdateRequest"
              },
              "description": "Status update payload."
            }
          }
        },
        "responses": {
          "200": {
            "description": "Status updated successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StatusEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Status not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Delete status",
        "description": "Deletes a status by its UUID. Cannot delete the last default status for a board.",
        "tags": [
          "Statuses"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "ticket",
          "x-chat-callable": true,
          "x-chat-display-name": "Delete Status",
          "x-chat-rbac-resource": "ticket",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Status UUID."
            },
            "required": true,
            "description": "Status UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "204": {
            "description": "Status deleted successfully."
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Status not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/service": {
      "get": {
        "summary": "List service categories",
        "description": "Returns a paginated list of service categories within the current tenant.",
        "tags": [
          "Service Categories"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service-category",
          "x-chat-callable": true,
          "x-chat-display-name": "List Service Categories",
          "x-chat-rbac-resource": "service-category",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "required": false,
            "name": "search",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean"
            },
            "required": false,
            "name": "is_active",
            "in": "query"
          },
          {
            "schema": {
              "type": "integer",
              "minimum": 1
            },
            "required": false,
            "name": "page",
            "in": "query"
          },
          {
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100
            },
            "required": false,
            "name": "limit",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "A paginated list of service categories.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PaginatedServiceCategoryResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "Create service category",
        "description": "Creates a new service category for the tenant. Requires the billing settings create permission.",
        "tags": [
          "Service Categories"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service-category",
          "x-chat-callable": true,
          "x-chat-display-name": "Create Service Category",
          "x-chat-rbac-resource": "service-category",
          "x-chat-approval-required": true
        },
        "requestBody": {
          "description": "Service category payload",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ServiceCategoryCreateRequest"
              },
              "description": "Service category payload"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Service category created successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "$ref": "#/components/schemas/ServiceCategory"
                    }
                  },
                  "required": [
                    "data"
                  ]
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/services": {
      "get": {
        "summary": "List services",
        "description": "Returns service catalog entries where item_kind is service. Use this endpoint to inspect existing service catalog records and to gather prerequisite IDs such as custom_service_type_id and category_id before creating a new service.",
        "tags": [
          "Services",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "List Services",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "integer",
              "minimum": 1,
              "default": 1
            },
            "required": false,
            "name": "page",
            "in": "query"
          },
          {
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100,
              "default": 25
            },
            "required": false,
            "name": "limit",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "service_name",
                "billing_method",
                "default_rate"
              ],
              "default": "service_name"
            },
            "required": false,
            "name": "sort",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "asc",
                "desc"
              ],
              "default": "asc"
            },
            "required": false,
            "name": "order",
            "in": "query"
          },
          {
            "schema": {
              "type": "string"
            },
            "required": false,
            "name": "search",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "service",
                "product",
                "any"
              ]
            },
            "required": false,
            "name": "item_kind",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string",
                  "enum": [
                    "true"
                  ]
                },
                {
                  "type": "string",
                  "enum": [
                    "false"
                  ]
                }
              ]
            },
            "required": false,
            "name": "is_active",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "fixed",
                "hourly",
                "usage"
              ]
            },
            "required": false,
            "name": "billing_method",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string",
                  "format": "uuid"
                },
                {
                  "type": "string",
                  "enum": [
                    "null"
                  ]
                }
              ]
            },
            "required": false,
            "name": "category_id",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "format": "uuid"
            },
            "required": false,
            "name": "custom_service_type_id",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Services returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PaginatedServiceEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "Create service",
        "description": "Creates a new service catalog entry. Resolve custom_service_type_id with GET /api/v1/service-types and category_id with GET /api/v1/categories/service before calling this endpoint. Use this endpoint for fixed, hourly, or usage-based service offerings.",
        "tags": [
          "Services",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Create Service",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": true
        },
        "requestBody": {
          "description": "Service creation payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "service_name": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 255
                  },
                  "custom_service_type_id": {
                    "type": "string",
                    "format": "uuid"
                  },
                  "billing_method": {
                    "type": "string",
                    "enum": [
                      "fixed",
                      "hourly",
                      "usage"
                    ]
                  },
                  "default_rate": {
                    "type": "number",
                    "minimum": 0
                  },
                  "unit_of_measure": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 128
                  },
                  "category_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "tax_rate_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "description": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 2048
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                },
                "required": [
                  "service_name",
                  "custom_service_type_id",
                  "billing_method",
                  "default_rate",
                  "unit_of_measure"
                ]
              },
              "description": "Service creation payload."
            }
          }
        },
        "responses": {
          "201": {
            "description": "Service created successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/services/{id}": {
      "get": {
        "summary": "Get service",
        "description": "Returns a single service catalog entry by UUID.",
        "tags": [
          "Services",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Get Service",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Service UUID."
            },
            "required": true,
            "description": "Service UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Service returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Service not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "Update service",
        "description": "Updates a service catalog entry by UUID.",
        "tags": [
          "Services",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Update Service",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Service UUID."
            },
            "required": true,
            "description": "Service UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "requestBody": {
          "description": "Service update payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "service_name": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 255
                  },
                  "custom_service_type_id": {
                    "type": "string",
                    "format": "uuid"
                  },
                  "billing_method": {
                    "type": "string",
                    "enum": [
                      "fixed",
                      "hourly",
                      "usage"
                    ]
                  },
                  "default_rate": {
                    "type": "number",
                    "minimum": 0
                  },
                  "unit_of_measure": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 128
                  },
                  "category_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "tax_rate_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "description": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 2048
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  }
                }
              },
              "description": "Service update payload."
            }
          }
        },
        "responses": {
          "200": {
            "description": "Service updated successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Service not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Delete service",
        "description": "Deletes a service catalog entry by UUID.",
        "tags": [
          "Services",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Delete Service",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Service UUID."
            },
            "required": true,
            "description": "Service UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "204": {
            "description": "Service deleted successfully."
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Service not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/products": {
      "get": {
        "summary": "List products",
        "description": "Returns product catalog entries where item_kind is product. Use this endpoint to inspect existing product catalog records and to gather prerequisite IDs such as custom_service_type_id and category_id before creating a new product.",
        "tags": [
          "Products",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "List Products",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "integer",
              "minimum": 1,
              "default": 1
            },
            "required": false,
            "name": "page",
            "in": "query"
          },
          {
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100,
              "default": 25
            },
            "required": false,
            "name": "limit",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "service_name",
                "default_rate"
              ],
              "default": "service_name"
            },
            "required": false,
            "name": "sort",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "asc",
                "desc"
              ],
              "default": "asc"
            },
            "required": false,
            "name": "order",
            "in": "query"
          },
          {
            "schema": {
              "type": "string"
            },
            "required": false,
            "name": "search",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string",
                  "enum": [
                    "true"
                  ]
                },
                {
                  "type": "string",
                  "enum": [
                    "false"
                  ]
                }
              ]
            },
            "required": false,
            "name": "is_active",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string",
                  "format": "uuid"
                },
                {
                  "type": "string",
                  "enum": [
                    "null"
                  ]
                }
              ]
            },
            "required": false,
            "name": "category_id",
            "in": "query"
          },
          {
            "schema": {
              "anyOf": [
                {
                  "type": "string",
                  "enum": [
                    "true"
                  ]
                },
                {
                  "type": "string",
                  "enum": [
                    "false"
                  ]
                }
              ]
            },
            "required": false,
            "name": "is_license",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Products returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PaginatedProductEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "Create product",
        "description": "Creates a new product catalog entry. Resolve custom_service_type_id with GET /api/v1/service-types and category_id with GET /api/v1/categories/service before calling this endpoint. Products are catalog entries with item_kind product and always use billing_method usage.",
        "tags": [
          "Products",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Create Product",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": true
        },
        "requestBody": {
          "description": "Product creation payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "service_name": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 255
                  },
                  "custom_service_type_id": {
                    "type": "string",
                    "format": "uuid"
                  },
                  "billing_method": {
                    "type": "string",
                    "enum": [
                      "usage"
                    ],
                    "default": "usage"
                  },
                  "default_rate": {
                    "type": "number",
                    "minimum": 0,
                    "default": 0
                  },
                  "currency_code": {
                    "type": "string",
                    "minLength": 3,
                    "maxLength": 3,
                    "default": "USD"
                  },
                  "unit_of_measure": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 128
                  },
                  "category_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "tax_rate_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "description": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 2048
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "sku": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 128
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "cost": {
                    "anyOf": [
                      {
                        "type": "number",
                        "minimum": 0
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "cost_currency": {
                    "anyOf": [
                      {
                        "type": "string",
                        "minLength": 3,
                        "maxLength": 3
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "default": "USD"
                  },
                  "vendor": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 255
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "manufacturer": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 255
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "product_category": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 255
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "is_license": {
                    "type": "boolean",
                    "default": false
                  },
                  "license_term": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 64
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "license_billing_cadence": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 64
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "is_active": {
                    "type": "boolean",
                    "default": true
                  },
                  "prices": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "currency_code": {
                          "type": "string",
                          "minLength": 3,
                          "maxLength": 3
                        },
                        "rate": {
                          "type": "number",
                          "minimum": 0
                        }
                      },
                      "required": [
                        "currency_code",
                        "rate"
                      ]
                    }
                  }
                },
                "required": [
                  "service_name",
                  "custom_service_type_id",
                  "unit_of_measure"
                ]
              },
              "description": "Product creation payload."
            }
          }
        },
        "responses": {
          "201": {
            "description": "Product created successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/products/{id}": {
      "get": {
        "summary": "Get product",
        "description": "Returns a single product catalog entry by UUID.",
        "tags": [
          "Products",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Get Product",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Product UUID."
            },
            "required": true,
            "description": "Product UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Product returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Product not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "Update product",
        "description": "Updates a product catalog entry by UUID.",
        "tags": [
          "Products",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Update Product",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Product UUID."
            },
            "required": true,
            "description": "Product UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "requestBody": {
          "description": "Product update payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "service_name": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 255
                  },
                  "custom_service_type_id": {
                    "type": "string",
                    "format": "uuid"
                  },
                  "billing_method": {
                    "type": "string",
                    "enum": [
                      "usage"
                    ],
                    "default": "usage"
                  },
                  "default_rate": {
                    "type": "number",
                    "minimum": 0,
                    "default": 0
                  },
                  "currency_code": {
                    "type": "string",
                    "minLength": 3,
                    "maxLength": 3,
                    "default": "USD"
                  },
                  "unit_of_measure": {
                    "type": "string",
                    "minLength": 1,
                    "maxLength": 128
                  },
                  "category_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "tax_rate_id": {
                    "anyOf": [
                      {
                        "type": "string",
                        "format": "uuid"
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "description": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 2048
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "sku": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 128
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "cost": {
                    "anyOf": [
                      {
                        "type": "number",
                        "minimum": 0
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "cost_currency": {
                    "anyOf": [
                      {
                        "type": "string",
                        "minLength": 3,
                        "maxLength": 3
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ],
                    "default": "USD"
                  },
                  "vendor": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 255
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "manufacturer": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 255
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "product_category": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 255
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "is_license": {
                    "type": "boolean",
                    "default": false
                  },
                  "license_term": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 64
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "license_billing_cadence": {
                    "anyOf": [
                      {
                        "type": "string",
                        "maxLength": 64
                      },
                      {
                        "type": "null"
                      },
                      {
                        "type": "null"
                      }
                    ]
                  },
                  "is_active": {
                    "type": "boolean",
                    "default": true
                  },
                  "prices": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "currency_code": {
                          "type": "string",
                          "minLength": 3,
                          "maxLength": 3
                        },
                        "rate": {
                          "type": "number",
                          "minimum": 0
                        }
                      },
                      "required": [
                        "currency_code",
                        "rate"
                      ]
                    }
                  }
                }
              },
              "description": "Product update payload."
            }
          }
        },
        "responses": {
          "200": {
            "description": "Product updated successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProductEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Product not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Delete product",
        "description": "Deletes a product catalog entry by UUID.",
        "tags": [
          "Products",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Delete Product",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Product UUID."
            },
            "required": true,
            "description": "Product UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "204": {
            "description": "Product deleted successfully."
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Product not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/service-types": {
      "get": {
        "summary": "List service types",
        "description": "Returns tenant service types. Use this endpoint to resolve custom_service_type_id before creating or updating services and products in the service catalog.",
        "tags": [
          "Service Types",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "List Service Types",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string"
            },
            "required": false,
            "name": "search",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "enum": [
                "fixed",
                "hourly",
                "usage"
              ]
            },
            "required": false,
            "name": "billing_method",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean"
            },
            "required": false,
            "name": "is_active",
            "in": "query"
          },
          {
            "schema": {
              "type": "integer",
              "minimum": 1
            },
            "required": false,
            "name": "page",
            "in": "query"
          },
          {
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100
            },
            "required": false,
            "name": "limit",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Service types returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PaginatedServiceTypeEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/service-types/{id}": {
      "get": {
        "summary": "Get service type",
        "description": "Returns a single tenant service type by UUID.",
        "tags": [
          "Service Types",
          "Service Catalog"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "service",
          "x-chat-callable": true,
          "x-chat-display-name": "Get Service Type",
          "x-chat-rbac-resource": "service",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Service type UUID."
            },
            "required": true,
            "description": "Service type UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Service type returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ServiceTypeEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Service type not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/{id}/task-status-mappings": {
      "get": {
        "summary": "List project task status mappings",
        "description": "Returns the task status mappings configured for the specified project. Use this endpoint to translate a human-readable status label such as \"In Progress\" into a project_status_mapping_id UUID before updating a task.",
        "tags": [
          "Projects"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "project",
          "x-chat-callable": true,
          "x-chat-display-name": "List Project Task Status Mappings",
          "x-chat-rbac-resource": "project",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project UUID."
            },
            "required": true,
            "description": "Project UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Project task status mappings returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProjectTaskStatusMappingListEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Project not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/{id}/tasks": {
      "get": {
        "summary": "List project tasks",
        "description": "Returns all tasks for the specified project UUID. Use this endpoint to identify a task by task_name before fetching or updating it.",
        "tags": [
          "Projects"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "project",
          "x-chat-callable": true,
          "x-chat-display-name": "List Project Tasks",
          "x-chat-rbac-resource": "project",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project UUID."
            },
            "required": true,
            "description": "Project UUID.",
            "name": "id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Project tasks returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProjectTaskListEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Project not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/{id}/phases/{phaseId}/tasks": {
      "post": {
        "summary": "Create project phase task",
        "description": "Creates a new task in the specified project phase. Resolve phaseId from the project phases and project_status_mapping_id from the project task status mappings before calling this endpoint.",
        "tags": [
          "Projects"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "project",
          "x-chat-callable": true,
          "x-chat-display-name": "Create Project Phase Task",
          "x-chat-rbac-resource": "project",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project UUID."
            },
            "required": true,
            "description": "Project UUID.",
            "name": "id",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project phase UUID."
            },
            "required": true,
            "description": "Project phase UUID.",
            "name": "phaseId",
            "in": "path"
          }
        ],
        "requestBody": {
          "description": "Project task creation payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProjectTaskCreateRequest"
              },
              "description": "Project task creation payload."
            }
          }
        },
        "responses": {
          "201": {
            "description": "Project task created successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProjectTaskEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Project or phase not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "List project phase tasks",
        "description": "Returns all tasks for the specified project phase. Both id and phaseId must be UUID path parameters.",
        "tags": [
          "Projects"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "project",
          "x-chat-callable": true,
          "x-chat-display-name": "List Project Phase Tasks",
          "x-chat-rbac-resource": "project",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project UUID."
            },
            "required": true,
            "description": "Project UUID.",
            "name": "id",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project phase UUID."
            },
            "required": true,
            "description": "Project phase UUID.",
            "name": "phaseId",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Project phase tasks returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProjectTaskListEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Project phase not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/tasks/{taskId}": {
      "get": {
        "summary": "Get project task",
        "description": "Returns a single project task by its task UUID.",
        "tags": [
          "Projects"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "project",
          "x-chat-callable": true,
          "x-chat-display-name": "Get Project Task",
          "x-chat-rbac-resource": "project",
          "x-chat-approval-required": false
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project task UUID."
            },
            "required": true,
            "description": "Project task UUID.",
            "name": "taskId",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Project task returned successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProjectTaskEnvelope"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Project task not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "Update project task",
        "description": "Updates a project task by task UUID. Use project_status_mapping_id when changing task status, and only send fields defined in the request schema.",
        "tags": [
          "Projects"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "project",
          "x-chat-callable": true,
          "x-chat-display-name": "Update Project Task",
          "x-chat-rbac-resource": "project",
          "x-chat-approval-required": true
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "format": "uuid",
              "description": "Project task UUID."
            },
            "required": true,
            "description": "Project task UUID.",
            "name": "taskId",
            "in": "path"
          }
        ],
        "requestBody": {
          "description": "Project task update payload.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ProjectTaskUpdateRequest"
              },
              "description": "Project task update payload."
            }
          }
        },
        "responses": {
          "200": {
            "description": "Project task updated successfully.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProjectTaskEnvelope"
                }
              }
            }
          },
          "400": {
            "description": "Validation error.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Authentication failed.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Authenticated user lacks the required permission.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Project task not found.",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/google/callback": {
      "get": {
        "summary": "GET auth",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/microsoft/callback": {
      "get": {
        "summary": "GET auth",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/session": {
      "get": {
        "summary": "GET auth",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/validate-api-key": {
      "post": {
        "summary": "POST auth",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/validate-token": {
      "post": {
        "summary": "POST auth",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/auth/{nextauth}": {
      "get": {
        "summary": "GET auth",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST auth",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/billing/licence-count": {
      "get": {
        "summary": "GET billing",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "billing"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST billing",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "billing"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/chat/stream/title": {
      "post": {
        "summary": "POST chat",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "chat"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/chat/stream/{slug}": {
      "get": {
        "summary": "GET chat",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "chat"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST chat",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "chat"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/documents/download/{fileId}": {
      "get": {
        "summary": "GET documents",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "documents"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/documents/view/{fileId}": {
      "get": {
        "summary": "GET documents",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "documents"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/documents/{documentId}/download": {
      "get": {
        "summary": "GET documents",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "documents"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/email/oauth/initiate": {
      "post": {
        "summary": "POST email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/email/refresh-watch": {
      "post": {
        "summary": "POST email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/email/webhooks/google": {
      "options": {
        "summary": "OPTIONS email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/email/webhooks/microsoft": {
      "get": {
        "summary": "GET email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "options": {
        "summary": "OPTIONS email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/email/webhooks/test": {
      "post": {
        "summary": "POST email",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "email"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/ext/{extensionId}/{path}": {
      "delete": {
        "summary": "DELETE ext",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "ext"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET ext",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "ext"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "patch": {
        "summary": "PATCH ext",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "ext"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST ext",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "ext"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT ext",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "ext"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/softwareone/agreements": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/softwareone/agreements/{id}": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/softwareone/statements": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/softwareone/statements/{id}": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/softwareone/statements/{id}/charges": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/softwareone/sync": {
      "post": {
        "summary": "POST extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/{extensionId}/agreements": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/{extensionId}/agreements/{id}": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/{extensionId}/statements": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/{extensionId}/statements/{id}": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/{extensionId}/statements/{id}/charges": {
      "get": {
        "summary": "GET extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/extensions/{extensionId}/sync": {
      "post": {
        "summary": "POST extensions",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "extensions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/files/{fileId}/download": {
      "get": {
        "summary": "GET files",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "files"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/health": {
      "get": {
        "summary": "GET health",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "health"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/healthz": {
      "get": {
        "summary": "GET healthz",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "healthz"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/installs/lookup-by-host": {
      "get": {
        "summary": "GET installs",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "installs"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/installs/validate": {
      "get": {
        "summary": "GET installs",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "installs"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/integrations/qbo/callback": {
      "get": {
        "summary": "GET integrations",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/integrations/qbo/connect": {
      "get": {
        "summary": "GET integrations",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/integrations/qbo/status": {
      "get": {
        "summary": "GET integrations",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/readyz": {
      "get": {
        "summary": "GET readyz",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "readyz"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/admin/telemetry-settings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "admin"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "admin"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/bulk-status": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/bulk-update": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/documents/{associationId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/maintenance/{scheduleId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/relationships/{relationshipId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/{id}/documents": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/{id}/history": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/{id}/maintenance": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/{id}/maintenance/record": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/assets/{id}/relationships": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "assets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/executions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/executions/{id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/executions/{id}/retry": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/meta": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/performance": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/rules": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/rules/bulk-execute": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/rules/bulk-status": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/rules/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/rules/{id}/execute": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/statistics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/templates": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/templates/{id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/automation/templates/{id}/use": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "automation"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/billing-analytics/overview": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "billing-analytics"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/bulk": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/bulk/add-services": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/bulk/create": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/bulk/delete": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/bulk/remove-services": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/bulk/update": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}/activation": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}/copy": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}/fixed-config": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}/services": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}/services/{serviceId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-lines/{id}/usage-metrics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/bulk/delete": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/service/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/ticket": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/ticket/move": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/ticket/tree": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/ticket/tree/{boardId}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/categories/ticket/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "categories"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/clients": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/clients/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/clients/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/clients/{id}/contacts": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/clients/{id}/locations": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "clients"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/client-contract-lines": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "client-contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "client-contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/client-contract-lines/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "client-contract-lines"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contacts": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contacts/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contacts/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contacts/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contacts/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contacts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/feature-access": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "feature-access"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/feature-flags": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "feature-flags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "feature-flags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/billing/calculate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/billing/payment-terms": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/bulk/credits": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/bulk/invoices": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/bulk/transactions": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/credits": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/credits/apply": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/credits/prepayment": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/credits/transfer": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/credits/validate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/invoices": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/invoices/{id}/finalize": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/invoices/{id}/items": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/payment-methods": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/payment-methods/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/reconciliation/run": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/reconciliation/{id}/resolve": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/reports/aging": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/reports/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/reports/balance": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/tax/calculate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/tax/rates": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/transactions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/financial/transactions/{id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "financial"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/accounts": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/accounts/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/connection/refresh": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/connection/status": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/connection/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/customers/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/customers/mappings/{mapping_id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/customers/sync": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/diagnostics": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/health": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/health/config": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/invoices/export": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/invoices/import": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/items": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/mappings/{mapping_id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/oauth/callback": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/oauth/disconnect": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/oauth/initiate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/payment-methods": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/payments/sync": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/sync/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/sync/full": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/sync/history": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/sync/status": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/sync/status/{sync_id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/sync/{sync_id}/cancel": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/sync/{sync_id}/retry": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/tax-codes": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/tax-codes/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/integrations/quickbooks/terms": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "integrations"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/bulk/credit": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/bulk/delete": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/bulk/send": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/generate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/manual": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/preview": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/recurring": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/recurring/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/approve": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/credit": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/duplicate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/finalize": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/items": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/payment": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/pdf": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/reject": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/send": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/tax": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/invoices/{id}/transactions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "invoices"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/activities": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/approve": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/convert": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/convert/preview": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/items": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/items/{itemId}": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/items/reorder": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/remind": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/request-changes": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/resend": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/revisions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/send": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quotes/{id}/submit-for-approval": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quotes"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/docs": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/endpoints": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/health": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/openapi": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/permissions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/schemas": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/sdk": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/meta/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "meta"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/permission-checks": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permission-checks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/permissions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permissions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permissions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/permissions/categories": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permissions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/permissions/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permissions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permissions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permissions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/permissions/{id}/roles": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "permissions"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contracts": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contracts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contracts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contracts/{contractId}/contract-lines": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contracts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contracts/{contractId}/contract-lines/{contractLineId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contracts"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-line-templates": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-line-templates"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/contract-line-templates/{id}/create-contract-line": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "contract-line-templates"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/bulk-assign": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/bulk-status": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/bulk-update": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/tasks/{taskId}/checklist": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/{id}/phases": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/{id}/phases/{phaseId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/projects/{id}/tickets": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "projects"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/accounts": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/accounts/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/connection/refresh": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/connection/status": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/connection/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/customers/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/customers/mappings/{mapping_id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/customers/sync": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/diagnostics": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/health": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/health/config": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/invoices/export": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/invoices/import": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/items": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/mappings/{mapping_id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/oauth/callback": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/oauth/disconnect": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/oauth/initiate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/payment-methods": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/payments/sync": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/sync/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/sync/full": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/sync/history": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/sync/status": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/sync/status/{sync_id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/sync/{sync_id}/cancel": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/sync/{sync_id}/retry": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/tax-codes": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/tax-codes/mappings": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/quickbooks/terms": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "quickbooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rbac/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "rbac"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/rbac/audit": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "rbac"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/roles": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/roles/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/roles/templates": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/roles/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/roles/{id}/clone": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/roles/{id}/permissions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/schedules": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "schedules"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "schedules"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/schedules/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "schedules"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/schedules/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "schedules"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "schedules"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "schedules"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/schedules/{id}/conflicts": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "schedules"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/bulk": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/bulk/merge": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/bulk/tag": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/bulk/untag": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/by-text": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/cloud": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/entity/{entityType}/{entityId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/{id}/colors": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tags/{id}/text": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tags"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/bulk": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/hierarchy": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/hierarchy": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/manager": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/members": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/members/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/members/{userId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/permissions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/permissions/{permissionId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/teams/{id}/projects": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "teams"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/test-auth": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "test-auth"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets/from-asset": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets/{id}/assignment": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets/{id}/comments": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/tickets/{id}/status": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "tickets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/active-session": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/approve": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/bulk": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/request-changes": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/start-tracking": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/stop-tracking/{sessionId}": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/templates": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-entries/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-entries"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-periods": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-periods/current": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-periods/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-periods/{id}/close": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-periods/{id}/reopen": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-periods"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/add-entry": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/approve": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/entries": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/reject": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/remove-entry": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/request-changes": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/reverse-approval": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/submit": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/time-sheets/{id}/summary": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "time-sheets"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/user-roles": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "user-roles"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/user/telemetry-decision": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "user"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/user/telemetry-preferences": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "user"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "user"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "user"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/activity": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/bulk/create": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/bulk/deactivate": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/stats": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/2fa/disable": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/2fa/enable": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/activity": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/avatar": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/password": {
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/permissions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/preferences": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/roles": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/teams": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/users/{id}/teams/{teamId}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "users"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/events": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/events/trigger": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/filter/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/health": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/subscriptions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/templates": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/templates/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/templates/{id}/create": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/transform/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/validate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/verify": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/deliveries": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/deliveries/{delivery_id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/deliveries/{delivery_id}/retry": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/filter/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/health": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/secret/rotate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/subscriptions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/transform/test": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/webhooks/{id}/validate": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "webhooks"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/analytics": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/events": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/events/{id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions/bulk": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions/bulk-action": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions/{id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions/{id}/cancel": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions/{id}/pause": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions/{id}/restart": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/executions/{id}/resume": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/export": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/import": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/search": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/tasks": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/tasks/bulk-assign": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/tasks/{id}": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/tasks/{id}/claim": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/tasks/{id}/complete": {
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/templates": {
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "POST v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "201": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/templates/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/workflows/{id}": {
      "delete": {
        "summary": "DELETE v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "204": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "get": {
        "summary": "GET v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "PUT v1",
        "description": "This operation was generated automatically from the route inventory. Replace with canonical OpenAPI metadata.",
        "tags": [
          "workflows"
        ],
        "extensions": {
          "x-generated-from": "docs/openapi/route-inventory.json",
          "x-placeholder": true
        },
        "requestBody": {
          "description": "Placeholder request body",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PlaceholderObject"
              },
              "description": "Placeholder request body"
            }
          }
        },
        "responses": {
          "200": {
            "description": "Placeholder success response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PlaceholderObject"
                }
              }
            }
          },
          "401": {
            "description": "Authentication required",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/storage/namespaces/{namespace}/records": {
      "get": {
        "summary": "List records in a namespace",
        "tags": [
          "Storage"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "storage",
          "x-chat-callable": true,
          "x-chat-display-name": "List Storage Records",
          "x-chat-rbac-resource": "storage",
          "x-chat-approval-required": false,
          "x-edition": "CE"
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128
            },
            "required": true,
            "name": "namespace",
            "in": "path"
          },
          {
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 100
            },
            "required": false,
            "name": "limit",
            "in": "query"
          },
          {
            "schema": {
              "type": "string"
            },
            "required": false,
            "name": "cursor",
            "in": "query"
          },
          {
            "schema": {
              "type": "string",
              "maxLength": 256
            },
            "required": false,
            "name": "keyPrefix",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean"
            },
            "required": false,
            "name": "includeValues",
            "in": "query"
          },
          {
            "schema": {
              "type": "boolean"
            },
            "required": false,
            "name": "includeMetadata",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "List of records",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StorageListResponse"
                }
              }
            }
          },
          "400": {
            "description": "Validation error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "summary": "Bulk insert or update records",
        "tags": [
          "Storage"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "storage",
          "x-chat-callable": true,
          "x-chat-display-name": "Upsert Storage Records",
          "x-chat-rbac-resource": "storage",
          "x-chat-approval-required": true,
          "x-edition": "CE"
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128
            },
            "required": true,
            "name": "namespace",
            "in": "path"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StorageBulkPutRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Bulk operation result",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StorageBulkPutResponse"
                }
              }
            }
          },
          "400": {
            "description": "Validation error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "409": {
            "description": "Revision mismatch",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "429": {
            "description": "Quota exceeded",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/storage/namespaces/{namespace}/records/{key}": {
      "get": {
        "summary": "Get a record by key",
        "tags": [
          "Storage"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "storage",
          "x-chat-callable": true,
          "x-chat-display-name": "Get Storage Record",
          "x-chat-rbac-resource": "storage",
          "x-chat-approval-required": false,
          "x-edition": "CE"
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128
            },
            "required": true,
            "name": "namespace",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 256
            },
            "required": true,
            "name": "key",
            "in": "path"
          },
          {
            "schema": {
              "type": "string"
            },
            "required": false,
            "name": "if-revision-match",
            "in": "header"
          }
        ],
        "responses": {
          "200": {
            "description": "Record",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StorageGetResponse"
                }
              }
            }
          },
          "400": {
            "description": "Validation error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "409": {
            "description": "Revision mismatch",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "put": {
        "summary": "Create or update a record by key",
        "tags": [
          "Storage"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "storage",
          "x-chat-callable": true,
          "x-chat-display-name": "Put Storage Record",
          "x-chat-rbac-resource": "storage",
          "x-chat-approval-required": true,
          "x-edition": "CE"
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128
            },
            "required": true,
            "name": "namespace",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 256
            },
            "required": true,
            "name": "key",
            "in": "path"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/StoragePutRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Updated record",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/StoragePutResponse"
                }
              }
            }
          },
          "400": {
            "description": "Validation error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "409": {
            "description": "Revision mismatch",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "429": {
            "description": "Quota exceeded",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      },
      "delete": {
        "summary": "Delete a record by key",
        "tags": [
          "Storage"
        ],
        "security": [
          {
            "ApiKeyAuth": []
          }
        ],
        "extensions": {
          "x-tenant-header-required": true,
          "x-rbac-resource": "storage",
          "x-edition": "CE"
        },
        "parameters": [
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 128
            },
            "required": true,
            "name": "namespace",
            "in": "path"
          },
          {
            "schema": {
              "type": "string",
              "minLength": 1,
              "maxLength": 256
            },
            "required": true,
            "name": "key",
            "in": "path"
          },
          {
            "schema": {
              "type": [
                "integer",
                "null"
              ],
              "minimum": 0
            },
            "required": false,
            "name": "ifRevision",
            "in": "query"
          }
        ],
        "responses": {
          "204": {
            "description": "Record deleted"
          },
          "400": {
            "description": "Validation error",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "401": {
            "description": "Unauthorized",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "403": {
            "description": "Forbidden",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404": {
            "description": "Not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        }
      }
    }
  },
  "webhooks": {}
}
