Add source/dist keys to root schema, fixes #10655
parent
eb0aaa7472
commit
dca0a65597
|
@ -132,6 +132,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"source": {
|
||||||
|
"$ref": "#/definitions/source"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"$ref": "#/definitions/dist"
|
||||||
|
},
|
||||||
"_comment": {
|
"_comment": {
|
||||||
"type": ["array", "string"],
|
"type": ["array", "string"],
|
||||||
"description": "A key to store comments in"
|
"description": "A key to store comments in"
|
||||||
|
@ -953,46 +959,52 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"source": {
|
"source": {
|
||||||
"type": "object",
|
"$ref": "#/definitions/source"
|
||||||
"required": ["type", "url", "reference"],
|
|
||||||
"properties": {
|
|
||||||
"type": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"reference": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"mirrors": {
|
|
||||||
"type": "array"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"dist": {
|
"dist": {
|
||||||
"type": "object",
|
"$ref": "#/definitions/dist"
|
||||||
"required": ["type", "url"],
|
|
||||||
"properties": {
|
|
||||||
"type": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"url": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"reference": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"shasum": {
|
|
||||||
"type": "string"
|
|
||||||
},
|
|
||||||
"mirrors": {
|
|
||||||
"type": "array"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": true
|
"additionalProperties": true
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"type": "object",
|
||||||
|
"required": ["type", "url", "reference"],
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"url": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reference": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"mirrors": {
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "object",
|
||||||
|
"required": ["type", "url"],
|
||||||
|
"properties": {
|
||||||
|
"type": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"url": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"reference": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"shasum": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"mirrors": {
|
||||||
|
"type": "array"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue