{ "$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" ] }