Azure Storage Accounts · JSON Structure

Azure Storage Accounts Identity Structure

Identity for the resource.

Type: object Properties: 3 Required: 1
AzureBlob StorageCloud StorageFile StorageQueue StorageStorageTable Storage

Identity is a JSON Structure definition published by Azure Storage Accounts, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

principalId tenantId type

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-storage-accounts/refs/heads/main/json-structure/azure-storage-accounts-identity-structure.json",
  "description": "Identity for the resource.",
  "properties": {
    "principalId": {
      "description": "The principal ID of resource identity.",
      "readOnly": true,
      "type": "string"
    },
    "tenantId": {
      "description": "The tenant ID of resource.",
      "readOnly": true,
      "type": "string"
    },
    "type": {
      "description": "The identity type.",
      "enum": [
        "SystemAssigned"
      ],
      "type": "string",
      "x-ms-enum": {
        "modelAsString": false,
        "name": "IdentityType"
      }
    }
  },
  "type": "object",
  "required": [
    "type"
  ],
  "name": "Identity"
}