{
    "exposeRootElement": true,
    "type": [
        "actionable",
        "editable"
    ],
    "shadow": {
        "elements": [
            {
                "name": "elementWithName",
                "public": true,
                "type": "container",
                "selector": {
                    "css": "[data-omni-key='%s']",
                    "args": [
                        {
                            "name": "elementName",
                            "type": "string"
                        }
                    ]
                }
            },
            {
                "name": "elementsWithName",
                "public": true,
                "type": "container",
                "selector": {
                    "css": "[data-omni-key='%s']",
                    "args": [
                        {
                            "name": "elementName",
                            "type": "string"
                        }
                    ],
                    "returnAll": true
                }
            },
            {
                "name": "input",
                "type": [
                    "actionable",
                    "clickable",
                    "editable"
                ],
                "selector": {
                    "css": "input"
                },
                "public": true
            },
            {
                "name": "label",
                "selector": {
                    "css": ".slds-form-element__label"
                }
            },
            {
                "name": "elementByCssSelector",
                "public": true,
                "type": [
                    "clickable"
                ],
                "selector": {
                    "css": "%s",
                    "args": [
                        {
                            "name": "elementName",
                            "type": "string"
                        }
                    ]
                }
            },
            {
                "name": "elementsByCssSelector",
                "public": true,
                "type": [
                    "clickable"
                ],
                "selector": {
                    "css": "%s",
                    "args": [
                        {
                            "name": "elementName",
                            "type": "string"
                        }
                    ],
                    "returnAll": true
                }
            },
            {
                "name": "helpIcon",
                "public": true,
                "type": "utam-omnistudio-common/pageObjects/tooltip",
                "selector": {
                    "css": "runtime_omnistudio_common-tooltip"
                }
            },
            {
                "name": "errorMessageElem",
                "selector": {
                    "css": ".slds-form-element__help"
                },
                "nullable": true
            },
            {
                "name": "radioButtonWithQuestionNumberAndOptionNumber",
                "public": true,
                "type": "clickable",
                "selector": {
                    "css": "fieldset:nth-of-type(%d) label:nth-child(%d) input",
                    "args": [
                        {
                            "name": "questionIndex",
                            "type": "number"
                        },
                        {
                            "name": "optionIndex",
                            "type": "number"
                        }
                    ]
                }
            },
            {
                "name": "setAll",
                "public": true,
                "type": "clickable",
                "selector": {
                    "css": ".slds-listbox__option"
                }
            }
        ]
    },
    "methods": [
        {
            "name": "getLabel",
            "compose": [
                {
                    "element": "label",
                    "apply": "getText"
                }
            ]
        },
        {
            "name": "getErrorMessage",
            "compose": [
                {
                    "element": "errorMessageElem",
                    "apply": "getText",
                    "returnType": "string"
                }
            ]
        },
        {
            "name": "setAll",
            "compose": [
                {
                    "element": "setAll",
                    "apply": "click"
                }
            ]
        }
    ],
    "description": {
        "text": [
            " "
        ],
        "author": "Salesforce"
    }
}