> ## Documentation Index
> Fetch the complete documentation index at: https://densify-sync-changelog-2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Add properties (bulk)

> Adds one or more properties to the platform catalog.  
Bulk add is all-or-nothing; a single error rolls back the set.  
`propertyName` must be unique within the catalog; `aliasName` uniqueness depends on scope
(global vs private). Platform-specific properties must be added to their matching catalog.




## OpenAPI

````yaml /openapi/public_cloud/Subscriptions_Properties.yaml POST /subscriptions/{platformType}/properties
openapi: 3.1.0
info:
  title: Kubex – Subscriptions Properties API
  version: 1.0.0
  description: >
    Catalog of recommendation properties available for use in subscription
    filters (`propertyReferences`).

    Separate catalogs exist per platform type; alias without platform behaves
    like cloud.  

    Admins can manage global/private properties; non-admins can manage only
    their private ones.
servers:
  - url: https://{host}
    variables:
      host:
        default: api.example.com
security: []
tags:
  - name: Subscriptions Properties
paths:
  /subscriptions/{platformType}/properties:
    post:
      tags:
        - Subscriptions Properties
      summary: Add properties (bulk)
      description: >
        Adds one or more properties to the platform catalog.  

        Bulk add is all-or-nothing; a single error rolls back the set.  

        `propertyName` must be unique within the catalog; `aliasName` uniqueness
        depends on scope

        (global vs private). Platform-specific properties must be added to their
        matching catalog.
      operationId: addSubscriptionProperties
      parameters:
        - $ref: '#/components/parameters/platformType'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              minItems: 1
              items:
                $ref: '#/components/schemas/SubscriptionPropertyCreate'
      responses:
        '200':
          description: Created properties
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SubscriptionProperty'
components:
  parameters:
    platformType:
      name: platformType
      in: path
      required: true
      description: Platform catalog (cloud or containers).
      schema:
        type: string
        enum:
          - cloud
          - containers
  schemas:
    SubscriptionPropertyCreate:
      type: object
      properties:
        propertyName:
          type: string
        aliasName:
          type: string
        owner:
          type: string
          description: >-
            Omit or empty for global (admins only); otherwise username for
            private.
      required:
        - propertyName
    SubscriptionProperty:
      type: object
      properties:
        propertyRef:
          type: string
          description: Unique referenced ID.
        propertyName:
          type: string
          description: >
            Recommendation element name (must exist in the applicable
            Recommendations response schema).
        aliasName:
          type: string
          description: Display alias (scope-unique per rules).
        owner:
          type: string
          description: Empty = global; otherwise username (private).
      required:
        - propertyRef
        - propertyName

````