Create download.json.schema
This commit is contained in:
parent
ed7424fe61
commit
c63d342aca
43
download.json.schema
Normal file
43
download.json.schema
Normal file
@ -0,0 +1,43 @@
|
||||
{
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"dev": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"version": {
|
||||
"type": "string",
|
||||
"pattern": "^[0-9]+(\\.[0-9]+)+$"
|
||||
},
|
||||
"exe": {
|
||||
"$ref": "#/definitions/file"
|
||||
},
|
||||
"jar": {
|
||||
"$ref": "#/definitions/file"
|
||||
},
|
||||
"sh": {
|
||||
"$ref": "#/definitions/file"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": ["dev"],
|
||||
"definitions": {
|
||||
"file": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"url": {
|
||||
"type": "string",
|
||||
"format": "uri"
|
||||
},
|
||||
"sha256": {
|
||||
"type": "string",
|
||||
"pattern": "^[a-f0-9]{64}$"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": ["url", "sha256"]
|
||||
}
|
||||
}
|
||||
}
|
@ -42,6 +42,9 @@
|
||||
},
|
||||
"force": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"preview": {
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
Loading…
Reference in New Issue
Block a user