Microsoft Azure · Schema

SecretItem

The secret item containing secret metadata.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string Secret identifier.
attributes object
tags object
contentType string
managed boolean
View JSON Schema on GitHub

JSON Schema

microsoft-azure-secretitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretItem",
  "title": "SecretItem",
  "type": "object",
  "description": "The secret item containing secret metadata.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Secret identifier.",
      "example": "abc123"
    },
    "attributes": {
      "$ref": "#/components/schemas/SecretAttributes"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "example": "example_value"
    },
    "contentType": {
      "type": "string",
      "example": "example_value"
    },
    "managed": {
      "type": "boolean",
      "readOnly": true,
      "example": true
    }
  }
}