Azure DevTest Labs · Schema

ArmTemplateInfo

Information about a generated ARM template.

AzureDevelopmentInfrastructureLabsTestingVirtual Machines

Properties

Name Type Description
parameters object The parameters of the ARM template.
template object The template's contents.
View JSON Schema on GitHub

JSON Schema

azure-test-labs-arm-template-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-test-labs/refs/heads/main/json-schema/azure-test-labs-arm-template-info-schema.json",
  "title": "ArmTemplateInfo",
  "description": "Information about a generated ARM template.",
  "type": "object",
  "properties": {
    "parameters": {
      "description": "The parameters of the ARM template.",
      "type": "object"
    },
    "template": {
      "description": "The template's contents.",
      "type": "object"
    }
  }
}