diff --git a/.schema/config.schema.json b/.schema/config.schema.json index b775974e2..f8182e524 100644 --- a/.schema/config.schema.json +++ b/.schema/config.schema.json @@ -1,5 +1,5 @@ { - "$id": "github.com/ory/oathkeeper/schema/config.schema.json", + "$id": "https://github.com/ory/oathkeeper/schema/config.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "ORY Oathkeeper Configuration", "type": "object", @@ -1871,10 +1871,10 @@ } }, "log": { - "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.605/logrusx/config.schema.json" + "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.666/logrusx/config.schema.json" }, "tracing": { - "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.605/otelx/config.schema.json" + "$ref": "https://raw.githubusercontent.com/ory/x/v0.0.666/otelx/config.schema.json" }, "profiling": { "title": "Profiling", diff --git a/scripts/render-schemas.sh b/scripts/render-schemas.sh index eb8f2b484..484796ffa 100755 --- a/scripts/render-schemas.sh +++ b/scripts/render-schemas.sh @@ -6,6 +6,6 @@ ory_x_version="$(go list -f '{{.Version}}' -m github.com/ory/x)" sed "s!ory://tracing-config!https://raw.githubusercontent.com/ory/x/$ory_x_version/otelx/config.schema.json!g; s!ory://logging-config!https://raw.githubusercontent.com/ory/x/$ory_x_version/logrusx/config.schema.json!g; -s!/.schema/config.schema.json!github.com/ory/oathkeeper/schema/config.schema.json!g" spec/config.schema.json > .schema/config.schema.json +s!/.schema/config.schema.json!https://github.com/ory/oathkeeper/schema/config.schema.json!g" spec/config.schema.json > .schema/config.schema.json git commit --author="ory-bot <60093411+ory-bot@users.noreply.github.com>" -m "autogen: render config schema" .schema/config.schema.json || true