Microsoft Azure · Schema

DeploymentExtended

Deployment information.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string The ID of the deployment.
name string The name of the deployment.
type string The type of the deployment.
location string The location of the deployment.
properties object
tags object Deployment tags.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-deploymentextended-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeploymentExtended",
  "title": "DeploymentExtended",
  "type": "object",
  "description": "Deployment information.",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "The ID of the deployment.",
      "example": "abc123"
    },
    "name": {
      "type": "string",
      "readOnly": true,
      "description": "The name of the deployment.",
      "example": "Example Title"
    },
    "type": {
      "type": "string",
      "readOnly": true,
      "description": "The type of the deployment.",
      "example": "example_value"
    },
    "location": {
      "type": "string",
      "description": "The location of the deployment.",
      "example": "example_value"
    },
    "properties": {
      "$ref": "#/components/schemas/DeploymentPropertiesExtended"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Deployment tags.",
      "example": "example_value"
    }
  }
}