Skip to content

Commit

Permalink
Enhancement: Update schema.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ergebnis-bot committed Mar 30, 2022
1 parent 67b8cfa commit be2c895
Showing 1 changed file with 54 additions and 42 deletions.
96 changes: 54 additions & 42 deletions resource/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@
}
}
},
"source": {
"$ref": "#/definitions/source"
},
"dist": {
"$ref": "#/definitions/dist"
},
"_comment": {
"type": [
"array",
Expand Down Expand Up @@ -1264,53 +1270,59 @@
}
},
"source": {
"type": "object",
"required": [
"type",
"url",
"reference"
],
"properties": {
"type": {
"type": "string"
},
"url": {
"type": "string"
},
"reference": {
"type": "string"
},
"mirrors": {
"type": "array"
}
}
"$ref": "#/definitions/source"
},
"dist": {
"type": "object",
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string"
},
"url": {
"type": "string"
},
"reference": {
"type": "string"
},
"shasum": {
"type": "string"
},
"mirrors": {
"type": "array"
}
}
"$ref": "#/definitions/dist"
}
},
"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"
}
}
}
},
"additionalProperties": true,
Expand Down

0 comments on commit be2c895

Please sign in to comment.