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."
}