25 lines
No EOL
777 B
JSON
25 lines
No EOL
777 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "module-custom-v1.json",
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"description": "This is not a built-in module."
|
|
},
|
|
"source": {
|
|
"type": "string",
|
|
"description": "The image ref of the module repository (an OCI image) to pull the module from.\nIf this is a local module, set the value to 'local'.\nhttps://blue-build.org/reference/module/#source-optional"
|
|
},
|
|
"no-cache": {
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "Whether to disabling caching for this layer.\nhttps://blue-build.org/reference/module/#no-cache-optional"
|
|
}
|
|
},
|
|
"required": [
|
|
"type",
|
|
"source"
|
|
],
|
|
"additionalProperties": {}
|
|
} |