schemas.schema-form.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gravitee-policy-latency Show documentation
Show all versions of gravitee-policy-latency Show documentation
Add latency to either the request or the response
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"time": {
"title": "Time duration",
"type": "integer",
"default": 100,
"minimum": 0
},
"timeUnit": {
"title": "Time unit",
"type": "string",
"default": "MILLISECONDS",
"enum": ["MILLISECONDS", "SECONDS"]
}
}
}