Microsoft Azure · Schema

UniqueKeyPolicy

The unique key policy configuration.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
uniqueKeys array List of unique keys for the container.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-uniquekeypolicy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UniqueKeyPolicy",
  "title": "UniqueKeyPolicy",
  "type": "object",
  "description": "The unique key policy configuration.",
  "properties": {
    "uniqueKeys": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "paths": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Paths that must be unique."
          }
        }
      },
      "description": "List of unique keys for the container.",
      "example": []
    }
  }
}