garden.lexicon.exultant-zebra.distribution

lexicon.store View official

Documentation

A distribution of an application.

main record

A distribution of an application.

Record Key tid Timestamp-based ID

Properties

artifacts array of ref #artifact Required

The list of downloadable artifacts for this distribution.

description string Optional

An optional description of this distribution.

version string Required

The version of this distribution, e.g. '0.14.0'.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "version",
      "artifacts"
    ],
    "properties": {
      "version": {
        "type": "string",
        "description": "The version of this distribution, e.g. '0.14.0'."
      },
      "artifacts": {
        "type": "array",
        "items": {
          "ref": "#artifact",
          "type": "ref"
        },
        "description": "The list of downloadable artifacts for this distribution."
      },
      "description": {
        "type": "string",
        "description": "An optional description of this distribution."
      }
    }
  },
  "description": "A distribution of an application."
}
artifact object

A downloadable artifact within a distribution.

Properties

description string Optional

An optional description of this artifact.

download blob Required

The downloadable binary.

tags array of string Optional

Optional tags describing this artifact, e.g. 'aarch64', 'apple-darwin', 'linux'.

View raw schema
{
  "type": "object",
  "required": [
    "download"
  ],
  "properties": {
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Optional tags describing this artifact, e.g. 'aarch64', 'apple-darwin', 'linux'."
    },
    "download": {
      "type": "blob",
      "accept": [
        "*/*"
      ],
      "description": "The downloadable binary."
    },
    "description": {
      "type": "string",
      "description": "An optional description of this artifact."
    }
  },
  "description": "A downloadable artifact within a distribution."
}

Lexicon Garden

@