Microsoft Azure · Schema

ResourceGroupPatchable

Resource group information for update.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
name string The name of the resource group.
tags object The tags attached to the resource group.
properties object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-resourcegrouppatchable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceGroupPatchable",
  "title": "ResourceGroupPatchable",
  "type": "object",
  "description": "Resource group information for update.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the resource group.",
      "example": "Example Title"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "The tags attached to the resource group.",
      "example": "example_value"
    },
    "properties": {
      "$ref": "#/components/schemas/ResourceGroupProperties"
    }
  }
}