Microsoft Azure · JSON Structure

Azure Resource Group Structure

Resource group information.

Type: object Properties: 6
Cloud ComputingDatabasesInfrastructureMachine LearningNetworkingPlatform as a ServiceStorage

ResourceGroup is a JSON Structure definition published by Microsoft Azure, describing 6 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name type location tags properties

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure/refs/heads/main/json-structure/azure-resource-group-structure.json",
  "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
        }
      }
    }
  },
  "name": "ResourceGroup"
}