Microsoft Azure · JSON Structure

Azure Generic Resource Structure

Resource information.

Type: object Properties: 8
Cloud ComputingDatabasesInfrastructureMachine LearningNetworkingPlatform as a ServiceStorage

GenericResource is a JSON Structure definition published by Microsoft Azure, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name type location tags kind managedBy sku

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure/refs/heads/main/json-structure/azure-generic-resource-structure.json",
  "description": "Resource information.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true
    },
    "name": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "location": {
      "type": "string"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "kind": {
      "type": "string"
    },
    "managedBy": {
      "type": "string"
    },
    "sku": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "tier": {
          "type": "string"
        },
        "capacity": {
          "type": "integer"
        }
      }
    }
  },
  "name": "GenericResource"
}