Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 971 Bytes

File metadata and controls

54 lines (44 loc) · 971 Bytes

Category (object)

Snippet

Single-select Category, and store Name, ID as object:

{
    "title": "Category (object)",
    "description": "Single-select Category, and store Name, ID as object",
    "type": "object",
    "properties": {
        "name": {
            "title": "Name",
            "type": "string"
        },
        "id": {
            "title": "ID",
            "type": "string"
        }
    },
    "propertyOrder": ["id", "name"],
    "ui:extension": {
        "name": "ecomm-toolkit",
        "params": {
            "label": "Category",
            "view": "single",
            "data": "category",
            "type": "object"
        }
    }
}

Sample content

{
    "categorySingleObject": {
        "name": "(bath-utilities) Bath Utilities",
        "id": "24"
    }
}

Sample UI

Empty field:

Sample UI

Selecting a category:

Sample UI