Files
deb-python-dcos/cli/dcoscli/data/universe-schema/command.json
José Armando García Sancio d5366fcbdc dcos-3254 Implement package create
2015-11-11 16:06:46 -08:00

21 lines
556 B
JSON

{
"$schema": "http://json-schema.org/schema#",
"oneOf": [
{
"type": "object",
"properties": {
"pip": {
"type": "array",
"items": {
"type": "string"
},
"title": "Embedded Requirements File",
"description": "An array of strings representing of the requirements file to use for installing the subcommand for Pip. Each item is interpreted as a line in the requirements file."
}
},
"additionalProperties": false,
"required": ["pip"]
}
]
}