{
    "description": {
        "author": "Salesforce",
        "text": [
            "Component that displays metadata information with optional icons and hyperlinks, and custom actions.",
            "Selector: setup_platform_unifiedapp-relationship-viewer-tree-grid-provider"
        ]
    },
    "shadow": {
        "elements": [
            {
                "name": "metadataContainer",
                "selector": {
                    "css": ".slds-grid"
                },
                "description": "Represents the container for metadata information",
                "nullable": true,
                "elements": [
                    {
                        "name": "leftIcon",
                        "selector": {
                            "css": "lightning-icon.slds-m-right_small"
                        },
                        "type": "utam-lightning/pageObjects/icon",
                        "description": "Represents the left icon if present",
                        "nullable": true,
                        "public": true
                    },
                    {
                        "name": "metadataLink",
                        "selector": {
                            "css": "a.slds-text-link"
                        },
                        "type": [
                            "actionable",
                            "clickable"
                        ],
                        "description": "Represents the hyperlink for metadata name",
                        "nullable": true
                    },
                    {
                        "name": "metadataText",
                        "selector": {
                            "css": "p.level-two"
                        },
                        "description": "Represents the plain text for metadata name",
                        "nullable": true
                    }
                ]
            },
            {
                "name": "rightIcon",
                "selector": {
                    "css": "lightning-icon.trailing-icon"
                },
                "type": "utam-lightning/pageObjects/icon",
                "description": "Represents the right icon if present",
                "nullable": true,
                "public": true
            }
        ]
    },
    "methods": [
        {
            "name": "isMetadataContainerVisible",
            "description": {
                "text": [
                    "Check that metadata container is present and visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "metadataContainer",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "isMetadataLinkVisible",
            "description": {
                "text": [
                    "Check that metadata hyperlink is present and visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "metadataLink",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "clickMetadataLink",
            "description": {
                "text": [
                    "Click the metadata hyperlink"
                ]
            },
            "compose": [
                {
                    "element": "metadataLink",
                    "apply": "click"
                }
            ]
        },
        {
            "name": "isMetadataTextVisible",
            "description": {
                "text": [
                    "Check that metadata text is present and visible"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "metadataText",
                    "apply": "isVisible"
                }
            ]
        },
        {
            "name": "verifyMetadataContainerPresence",
            "description": {
                "text": [
                    "Returns true if element \"metadataContainer\" present on the page"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "metadataContainer",
                    "matcher": {
                        "type": "notNull"
                    }
                }
            ]
        },
        {
            "name": "verifyMetadataLinkPresence",
            "description": {
                "text": [
                    "Returns true if element \"metadataLink\" present on the page"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "metadataLink",
                    "matcher": {
                        "type": "notNull"
                    }
                }
            ]
        },
        {
            "name": "verifyMetadataTextPresence",
            "description": {
                "text": [
                    "Returns true if element \"metadataText\" present on the page"
                ],
                "return": "boolean"
            },
            "compose": [
                {
                    "element": "metadataText",
                    "matcher": {
                        "type": "notNull"
                    }
                }
            ]
        }
    ]
}