All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tream-trader.simulation.1.12.source-code.config.schema.json Maven / Gradle / Ivy

There is a newer version: 1.18
Show newest version
{
    "$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