29 lines
965 B
JSON
29 lines
965 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "Application response limits",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"properties": {
|
|
"max_github_response_size_limit": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"description": "Maximum allowed size in MB for GitHub API responses."
|
|
},
|
|
"max_github_response_json_value_count": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"description": "Maximum allowed object count for GitHub API responses. Count is an estimate based on the number of : , { and [ occurrences in the response."
|
|
},
|
|
"max_http_decompressed_size": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"description": "Maximum allowed size in MB for Gzip-compressed HTTP responses after decompression."
|
|
},
|
|
"max_http_response_size_limit": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"description": "Maximum allowed size in MB for HTTP responses."
|
|
}
|
|
}
|
|
}
|