{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProcessorParameter",
"title": "ProcessorParameter",
"type": "object",
"required": [
"ParameterName",
"ParameterValue"
],
"properties": {
"ParameterName": {
"allOf": [
{
"$ref": "#/components/schemas/ProcessorParameterName"
},
{
"description": "The name of the parameter. Currently the following default values are supported: 3 for <code>NumberOfRetries</code> and 60 for the <code>BufferIntervalInSeconds</code>. The <code>BufferSizeInMBs</code> ranges between 0.2 MB and up to 3MB. The default buffering hint is 1MB for all destinations, except Splunk. For Splunk, the default buffering hint is 256 KB. "
}
]
},
"ParameterValue": {
"allOf": [
{
"$ref": "#/components/schemas/ProcessorParameterValue"
},
{
"description": "The parameter value."
}
]
}
},
"description": "Describes the processor parameter. "
}