Skip to content

Commit

Permalink
fix: config schema (generated) (#1502)
Browse files Browse the repository at this point in the history
  • Loading branch information
alnr committed Jan 9, 2024
1 parent 590520e commit e7faf48
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .schema/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -312,10 +312,10 @@
"enum": ["cpu", "mem", ""]
},
"log": {
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.543/logrusx/config.schema.json"
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.607/logrusx/config.schema.json"
},
"tracing": {
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.543/tracing/config.schema.json"
"$ref": "https://raw.githubusercontent.com/ory/x/v0.0.607/otelx/config.schema.json"
},
"namespaces": {
"description": "Namespace configuration or it's location.",
Expand Down Expand Up @@ -372,6 +372,14 @@
"description": "The global maximum depth on all read operations. Note that this does not affect how deeply nested the tuples can be. This value can be decreased for a request by a value specified on the request, only if the request-specific value is greater than 1 and less than the global maximum depth.",
"minimum": 1,
"maximum": 65535
},
"max_read_width": {
"type": "integer",
"default": 100,
"title": "Global maximum read width",
"description": "The global maximum width on all read operations. Note that this does not affect how deeply nested the tuples can be. This value can be decreased for a request by a value specified on the request, only if the request-specific value is greater than 1 and less than the global maximum width.",
"minimum": 1,
"maximum": 65535
}
},
"additionalProperties": false
Expand Down

0 comments on commit e7faf48

Please sign in to comment.