73 lines
1.6 KiB
JSON
73 lines
1.6 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://example.local/http-client-app/contracts/workspace-json-schemas/settings.schema.json",
|
|
"title": "HTTP Client Workspace Settings",
|
|
"type": "object",
|
|
"required": [
|
|
"schemaVersion"
|
|
],
|
|
"properties": {
|
|
"schemaVersion": {
|
|
"type": "integer",
|
|
"const": 1
|
|
},
|
|
"defaultEnvironment": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
]
|
|
},
|
|
"history": {
|
|
"type": "object",
|
|
"properties": {
|
|
"retentionMaxCount": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"default": 1000
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"mock": {
|
|
"type": "object",
|
|
"properties": {
|
|
"proxyFallback": {
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"default": false
|
|
},
|
|
"upstreamBaseUrl": {
|
|
"type": [
|
|
"string",
|
|
"null"
|
|
],
|
|
"format": "uri"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
},
|
|
"hitLog": {
|
|
"type": "object",
|
|
"properties": {
|
|
"retentionMaxCount": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"default": 10000
|
|
},
|
|
"retentionDays": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"default": 7
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|