Microsoft Azure · Schema
ResourceGroup
Resource group information.
API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the resource group. |
| name | string | The name of the resource group. |
| type | string | The type of the resource group. |
| location | string | The location of the resource group. It cannot be changed after the resource group has been created. It must be one of the supported Azure locations. |
| managedBy | string | The ID of the resource that manages this resource group. |
| tags | object | The tags attached to the resource group. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ResourceGroup",
"type": "object",
"description": "Resource group information.",
"properties": {
"id": {
"type": "string",
"description": "The ID of the resource group."
},
"name": {
"type": "string",
"description": "The name of the resource group."
},
"type": {
"type": "string",
"description": "The type of the resource group."
},
"location": {
"type": "string",
"description": "The location of the resource group. It cannot be changed after the resource group has been created. It must be one of the supported Azure locations."
},
"managedBy": {
"type": "string",
"description": "The ID of the resource that manages this resource group."
},
"tags": {
"type": "object",
"description": "The tags attached to the resource group."
}
}
}