vw_evidences
Creates, updates, deletes, gets or lists a vw_evidences
resource.
Overview
Name | vw_evidences |
Type | View |
Id | azure_extras.app_compliance_automation.vw_evidences |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
JSON_EXTRACT(properties, '$.evidenceType') as "evidence_type",
JSON_EXTRACT(properties, '$.filePath') as "file_path",
JSON_EXTRACT(properties, '$.extraData') as "extra_data",
JSON_EXTRACT(properties, '$.controlId') as "control_id",
JSON_EXTRACT(properties, '$.responsibilityId') as "responsibility_id",
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
reportName,
evidenceName
FROM azure_extras.app_compliance_automation.evidences
WHERE reportName = 'replace-me';
SELECT
json_extract_path_text(properties, '$.evidenceType') as "evidence_type",
json_extract_path_text(properties, '$.filePath') as "file_path",
json_extract_path_text(properties, '$.extraData') as "extra_data",
json_extract_path_text(properties, '$.controlId') as "control_id",
json_extract_path_text(properties, '$.responsibilityId') as "responsibility_id",
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
reportName,
evidenceName
FROM azure_extras.app_compliance_automation.evidences
WHERE reportName = 'replace-me';