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-apim-plugin-endpoint-mock Show documentation
Show all versions of gravitee-apim-plugin-endpoint-mock Show documentation
Use a Mock backend to emulate the behaviour of a typical HTTP server and test processes
{
"type": "object",
"id": "urn:jsonschema:io:gravitee:plugin:endpoint:mock:configuration:MockEndpointConnectorConfiguration",
"additionalProperties": false,
"properties": {
"messageInterval": {
"type": "integer",
"title": "Interval between messages publication",
"description": "Interval between messages publication, in milliseconds.",
"default": 1000
},
"messageContent": {
"type": "string",
"title": "Content of published messages",
"description": "Content of published messages. Will be suffixed with message index.",
"default": "mock message"
},
"messageCount": {
"type": "integer",
"title": "Count of published messages",
"description": "Count of published messages. If not specified, there is no limit."
}
},
"required": [
"messageContent",
"messageInterval"
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy