Save your wardrobe booking apis
    Save your wardrobe booking apis
    • Customer booking
      • Getting Started
        • Introduction
        • Authentication
        • Attribute groups
      • Authentication
        • Customer login
        • Customer signup
      • categories
        • Get providers
        • Get clothes categories
      • services
        • Get services
      • Upload photos
        • Uplaod photos
      • shoppingCart
        • Create A New Shopping Cart
        • Add items to Shopping Cart
        • Add customer to Shopping Cart
        • Delete Item From Shopping Cart
        • Get Available Logistics Options
        • Add Logistic Option To Shopping Cart
      • order
        • Create the Order from the Shopping Cart
        • List Orders
    • Schemas
      • attributesGroup
      • currency
      • translatedString
      • metadata
      • shoppingCart
      • item
      • item Copy
      • order

    attributesGroup

    An Attribute Group is a collection of attributes used to dynamically generate and display a form in the frontend. Each attribute represents a specific form component, allowing for structured input collection.
    Each attribute within an attribute group contains a metadata field, whose format depends on the attribute type. The metadata provides essential configuration details required for correctly displaying and validating the attribute.

    {
        "id": "string",
        "identifier": "string",
        "name": {
            "fr": "string",
            "en": "string",
            "de": "string",
            "es": "string"
        },
        "description": {
            "fr": "string",
            "en": "string",
            "de": "string",
            "es": "string"
        },
        "attributes": [
            {
                "_id": "string",
                "label": {
                    "fr": "string",
                    "en": "string",
                    "de": "string",
                    "es": "string"
                },
                "helperLabel": {
                    "fr": "string",
                    "en": "string",
                    "de": "string",
                    "es": "string"
                },
                "isRequired": true,
                "type": "string",
                "metadata": {
                    "maxLength": 0
                },
                "parentValue": [
                    "string"
                ],
                "parentId": [
                    "string"
                ],
                "identifier": "string"
            }
        ]
    }
    Built with