tream-trader.simulation.1.12.source-code.config.schema.json Maven / Gradle / Ivy
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"required": [
"dataFeed"
],
"properties": {
"dataFeed": {
"$ref": "#/definitions/downstreamService"
}
},
"definitions": {
"downstreamService": {
"required": [
"url",
"healthCheckPath"
],
"properties": {
"url": {
"$ref": "#/definitions/baseUrl"
},
"healthCheckPath": {
"type": "string"
}
}
},
"baseUrl": {
"required": [
"protocol",
"host"
],
"properties": {
"protocol": {
"type": "string"
},
"host": {
"type": "string"
},
"port": {
"type": "number"
},
"basePath": {
"type": "string"
},
"verifyCertificate": {
"type": "boolean"
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy