Skip to main content

workflow_triggers_schema_json

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

Overview

Nameworkflow_triggers_schema_json
TypeResource
Idazure.logic_apps.workflow_triggers_schema_json

Fields

NameDatatypeDescription
contentstringThe JSON content.
titlestringThe JSON title.

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, subscriptionId, triggerName, workflowNameGet the trigger schema as JSON.

SELECT examples

Get the trigger schema as JSON.

SELECT
content,
title
FROM azure.logic_apps.workflow_triggers_schema_json
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND triggerName = '{{ triggerName }}'
AND workflowName = '{{ workflowName }}';