Skip to content

Commit

Permalink
docs: fix version meta schema
Browse files Browse the repository at this point in the history
  • Loading branch information
zepatrik committed Sep 2, 2022
1 parent e235520 commit b054b24
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .schema/version.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@
"title": "All Versions of the ORY Keto Configuration",
"type": "object",
"oneOf": [
{
"allOf": [
{
"properties": {
"version": {
"const": "v0.9.0-alpha.0"
}
},
"required": ["version"]
},
{
"$ref": "https://raw.githubusercontent.com/ory/keto/v0.9.0-alpha.0/.schema/config.schema.json"
}
]
},
{
"allOf": [
{
Expand Down Expand Up @@ -95,7 +110,6 @@
]
},
{
"description": "This is the fallback to the latest version (the first one in this schema) in case no version is specified.",
"allOf": [
{
"oneOf": [
Expand Down

0 comments on commit b054b24

Please sign in to comment.