Skip to content

Commit

Permalink
fix: clean schema-form to make it compatible with gio-form-json-schem…
Browse files Browse the repository at this point in the history
…a component
  • Loading branch information
ThibaudAV committed Apr 18, 2023
1 parent bce66cb commit 3cbd317
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions src/main/resources/schemas/schema-form.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"type" : "object",
"id" : "urn:jsonschema:io:gravitee:policy:apikey:configuration:ApiKeyPolicyConfiguration",
"properties" : {
"propagateApiKey" : {
"title": "Propagate API Key to upstream API",
"type" : "boolean"
}
}
}
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"propagateApiKey": {
"title": "Propagate API Key to upstream API",
"type": "boolean"
}
},
"additionalProperties": false
}

0 comments on commit 3cbd317

Please sign in to comment.