Microsoft Azure · Schema

ManifestWrapper

Manifest wrapper.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
annotations object Additional information about the manifest.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-manifestwrapper-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManifestWrapper",
  "title": "ManifestWrapper",
  "type": "object",
  "description": "Manifest wrapper.",
  "allOf": [
    {
      "$ref": "#/components/schemas/Manifest"
    }
  ],
  "properties": {
    "annotations": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Additional information about the manifest.",
      "example": "example_value"
    }
  }
}