Resource group information.
{ "$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 } } } } }