{
    "description": {
        "author": "Salesforce",
        "text": [
            "Page Object: schemaConfiguration",
            "Selector: mcontent_lightning_types-schema-configuration",
            "Schema configuration panel for Lightning Types showing property container"
        ]
    },
    "root": true,
    "selector": {
        "css": "mcontent_lightning_types-schema-configuration"
    },
    "shadow": {
        "elements": [
            {
                "public": true,
                "name": "codeViewButton",
                "type": [
                    "clickable",
                    "actionable"
                ],
                "nullable": true,
                "selector": {
                    "css": "button.code-view-link"
                }
            },
            {
                "public": true,
                "name": "propertyContainer",
                "type": "utam-typesystem_ui/pageObjects/lightningTypePropertyContainer",
                "selector": {
                    "css": "typesystem_ui-lightning-type-property-container"
                }
            },
            {
                "public": true,
                "name": "warningBanner",
                "type": [
                    "actionable"
                ],
                "nullable": true,
                "selector": {
                    "css": "div.slds-theme_warning"
                }
            },
            {
                "public": true,
                "name": "referenceTypeText",
                "type": [
                    "actionable"
                ],
                "nullable": true,
                "selector": {
                    "css": "span.slds-text-title_bold"
                }
            }
        ]
    },
    "methods": [
        {
            "name": "waitForPropertyContainerVisible",
            "description": "Waits for the property container to be visible",
            "compose": [
                {
                    "element": "propertyContainer",
                    "apply": "waitForVisible"
                }
            ]
        },
        {
            "name": "clickCodeView",
            "description": "Clicks the code view button",
            "compose": [
                {
                    "element": "codeViewButton",
                    "apply": "click"
                }
            ]
        }
    ]
}