
raml.schemas.delay-distribution.schema.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wiremock Show documentation
Show all versions of wiremock Show documentation
A web service test double for all occasions
{
"type": "object",
"oneOf": [
{
"description": "Log normal randomly distributed response delay.",
"properties": {
"type": {
"type": "string",
"enum": [
"lognormal"
]
},
"median": {
"type": "integer"
},
"sigma": {
"type": "number"
}
},
"required": [
"type",
"median",
"sigma"
]
},
{
"description": "Uniformly distributed random response delay.",
"properties": {
"type": {
"type": "string",
"enum": [
"uniform"
]
},
"upper": {
"type": "integer"
},
"lower": {
"type": "integer"
}
},
"required": [
"type",
"upper",
"lower"
]
}
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy