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": {
|
||||
"type": ["array", "string"],
|
||||
"description": "A key to store comments in"
|
||||
|
@ -952,6 +958,15 @@
|
|||
"type": "string"
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"$ref": "#/definitions/source"
|
||||
},
|
||||
"dist": {
|
||||
"$ref": "#/definitions/dist"
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
},
|
||||
"source": {
|
||||
"type": "object",
|
||||
"required": ["type", "url", "reference"],
|
||||
|
@ -991,8 +1006,5 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"additionalProperties": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue