Skip to content

Commit

Permalink
upload oc schema
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardo-devis-agullo committed Aug 27, 2024
1 parent ac7d2af commit 779ab94
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions website/static/schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"registries": {
"type": "array",
"items": {
"type": "string"
}
},
"mocks": {
"type": "object",
"properties": {
"plugins": {
"type": "object",
"properties": {
"dynamic": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"static": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"additionalProperties": false
}
},
"additionalProperties": false
}
},
"required": [
"registries"
],
"additionalProperties": false
}

0 comments on commit 779ab94

Please sign in to comment.