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. |
| properties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ResourceGroup",
"title": "ResourceGroup",
"type": "object",
"description": "Resource group information.",
"properties": {
"id": {
"type": "string",
"readOnly": true,
"description": "The ID of the resource group.",
"example": "abc123"
},
"name": {
"type": "string",
"readOnly": true,
"description": "The name of the resource group.",
"example": "Example Title"
},
"type": {
"type": "string",
"readOnly": true,
"description": "The type of the resource group.",
"example": "example_value"
},
"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.",
"example": "example_value"
},
"managedBy": {
"type": "string",
"description": "The ID of the resource that manages this resource group.",
"example": "example_value"
},
"tags": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "The tags attached to the resource group.",
"example": "example_value"
},
"properties": {
"$ref": "#/components/schemas/ResourceGroupProperties"
}
},
"required": [
"location"
]
}