Microsoft Azure · Schema

ResourceGroup

Resource group information.

Cloud ComputingDatabasesInfrastructureMachine LearningNetworkingPlatform as a ServiceStorage

Properties

Name Type Description
id string
name string
type string
location string
tags object
properties object
View JSON Schema on GitHub

JSON Schema

azure-resource-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure/refs/heads/main/json-schema/azure-resource-group-schema.json",
  "title": "ResourceGroup",
  "description": "Resource group information.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string",
      "readOnly": true
    },
    "location": {
      "type": "string"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "properties": {
      "type": "object",
      "properties": {
        "provisioningState": {
          "type": "string",
          "readOnly": true
        }
      }
    }
  }
}