Skip to main content

vw_schemas

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

Overview

Namevw_schemas
TypeView
Idazure.device_registry.vw_schemas

Fields

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

SQL Definition

SELECT
JSON_EXTRACT(properties, '$.uuid') as "uuid",
JSON_EXTRACT(properties, '$.displayName') as "display_name",
JSON_EXTRACT(properties, '$.description') as "description",
JSON_EXTRACT(properties, '$.format') as "format",
JSON_EXTRACT(properties, '$.schemaType') as "schema_type",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.tags') as "tags",
subscriptionId,
resourceGroupName,
schemaRegistryName,
schemaName
FROM azure.device_registry.schemas
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND schemaRegistryName = 'replace-me';