Skip to main content

vw_integration_account_schemas

Creates, updates, deletes, gets or lists a vw_integration_account_schemas resource.

Overview

Namevw_integration_account_schemas
TypeView
Idazure.logic_apps.vw_integration_account_schemas

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.schemaType') as "schema_type",
JSON_EXTRACT(properties, '$.targetNamespace') as "target_namespace",
JSON_EXTRACT(properties, '$.documentName') as "document_name",
JSON_EXTRACT(properties, '$.fileName') as "file_name",
JSON_EXTRACT(properties, '$.createdTime') as "created_time",
JSON_EXTRACT(properties, '$.changedTime') as "changed_time",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
JSON_EXTRACT(properties, '$.content') as "content",
JSON_EXTRACT(properties, '$.contentType') as "content_type",
JSON_EXTRACT(properties, '$.contentLink') as "content_link",
subscriptionId,
resourceGroupName,
integrationAccountName,
schemaName
FROM azure.logic_apps.integration_account_schemas
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND integrationAccountName = 'replace-me';