Microsoft Azure · Schema

ParametersLink

Entity representing the reference to the deployment parameters.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
uri string The URI of the parameters file.
contentVersion string The content version of the parameters.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-parameterslink-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ParametersLink",
  "title": "ParametersLink",
  "type": "object",
  "description": "Entity representing the reference to the deployment parameters.",
  "properties": {
    "uri": {
      "type": "string",
      "description": "The URI of the parameters file.",
      "example": "example_value"
    },
    "contentVersion": {
      "type": "string",
      "description": "The content version of the parameters.",
      "example": "example_value"
    }
  },
  "required": [
    "uri"
  ]
}