Microsoft Azure · Schema

ManifestList

List of manifests.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
registry string
imageName string
manifests array
View JSON Schema on GitHub

JSON Schema

microsoft-azure-manifestlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManifestList",
  "title": "ManifestList",
  "type": "object",
  "description": "List of manifests.",
  "properties": {
    "registry": {
      "type": "string",
      "example": "example_value"
    },
    "imageName": {
      "type": "string",
      "example": "example_value"
    },
    "manifests": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ManifestAttributesBase"
      },
      "example": []
    }
  }
}