schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
exception-type
The class of the exception to create using the message.
{"type": "string"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
message
To create a new exception instance and use the given message as caused message (supports simple language)
{"type": "string"}
camel-yaml-dsl.json
ref
Reference to the exception instance to lookup from the registry to throw
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.ToDefinition
Sends the message to a static endpoint
{"oneOf": [{"type": "string"}, {"type": "object", "properties": {"disabled": {"type": "boolean"}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "parameters": {"type": "object"}, "pattern": {"type": "string", "enum": ["InOnly", "InOut"]}, "uri": {"type": "string"}}}], "required": ["uri"]}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
pattern
Sets the optional ExchangePattern used to invoke this endpoint
{"type": "string", "enum": ["InOnly", "InOut"]}
camel-yaml-dsl.json
uri
Sets the uri of the endpoint to send to.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.ToDynamicDefinition
Sends the message to a dynamic endpoint
{"oneOf": [{"type": "string"}, {"type": "object", "properties": {"allow-optimised-components": {"type": "boolean"}, "auto-start-components": {"type": "boolean"}, "cache-size": {"type": "number"}, "disabled": {"type": "boolean"}, "id": {"type": "string"}, "ignore-invalid-endpoint": {"type": "boolean"}, "inherit-error-handler": {"type": "boolean"}, "parameters": {"type": "object"}, "pattern": {"type": "string", "enum": ["InOnly", "InOut"]}, "uri": {"type": "string"}}}], "required": ["uri"]}
camel-yaml-dsl.json
allow-optimised-components
Whether to allow components to optimise toD if they are org.apache.camel.spi.SendDynamicAware .
{"type": "boolean"}
camel-yaml-dsl.json
auto-start-components
Whether to auto startup components when toD is starting up.
{"type": "boolean"}
camel-yaml-dsl.json
cache-size
Sets the maximum size used by the org.apache.camel.spi.ProducerCache which is used to cache and reuse producers when using this recipient list, when uris are reused. Beware that when using dynamic endpoints then it affects how well the cache can be utilized. If each dynamic endpoint is unique then its best to turn off caching by setting this to -1, which allows Camel to not cache both the producers and endpoints; they are regarded as prototype scoped and will be stopped and discarded after use. This reduces memory usage as otherwise producers/endpoints are stored in memory in the caches. However if there are a high degree of dynamic endpoints that have been used before, then it can benefit to use the cache to reuse both producers and endpoints and therefore the cache size can be set accordingly or rely on the default size (1000). If there is a mix of unique and used before dynamic endpoints, then setting a reasonable cache size can help reduce memory usage to avoid storing too many non frequent used producers.
{"type": "number"}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
ignore-invalid-endpoint
Whether to ignore invalid endpoint URIs and skip sending the message.
{"type": "boolean"}
camel-yaml-dsl.json
pattern
Sets the optional ExchangePattern used to invoke this endpoint
{"type": "string", "enum": ["InOnly", "InOut"]}
camel-yaml-dsl.json
uri
The uri of the endpoint to send to. The uri can be dynamic computed using the org.apache.camel.language.simple.SimpleLanguage expression.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.TransactedDefinition
Enables transaction on the route
{"type": "object", "properties": {"disabled": {"type": "boolean"}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "ref": {"type": "string"}, "steps": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
ref
Sets a reference to use for lookup the policy in the registry.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.TransformDefinition
Transforms the message body based on an expression
{"type": "object", "anyOf": [{}], "properties": {"disabled": {"type": "boolean"}, "expression": {}, "from-type": {"type": "string"}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "to-type": {"type": "string"}}}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
expression
Expression to return the transformed message body (the new message body to use)
{}
camel-yaml-dsl.json
from-type
From type used in data type transformation.
{"type": "string"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
to-type
To type used as a target data type in the transformation.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.TryDefinition
Marks the beginning of a try, catch, finally block
{"type": "object", "properties": {"disabled": {"type": "boolean"}, "do-catch": {"type": "array", "items": {}}, "do-finally": {}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "steps": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.UnmarshalDefinition
Converts the message data received from the wire into a format that Apache Camel processors can consume
{"type": "object", "properties": {"allow-null-body": {"type": "boolean"}, "asn1": {}, "avro": {}, "barcode": {}, "base64": {}, "bindy": {}, "cbor": {}, "crypto": {}, "csv": {}, "custom": {}, "disabled": {"type": "boolean"}, "fhir-json": {}, "fhir-xml": {}, "flatpack": {}, "grok": {}, "gzip-deflater": {}, "hl7": {}, "ical": {}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "jackson-xml": {}, "jaxb": {}, "json": {}, "json-api": {}, "lzf": {}, "mime-multipart": {}, "parquet-avro": {}, "pgp": {}, "protobuf": {}, "rss": {}, "soap": {}, "swift-mt": {}, "swift-mx": {}, "syslog": {}, "tar-file": {}, "thrift": {}, "tidy-markup": {}, "univocity-csv": {}, "univocity-fixed": {}, "univocity-tsv": {}, "xml-security": {}, "yaml": {}, "zip-deflater": {}, "zip-file": {}}}
camel-yaml-dsl.json
allow-null-body
Indicates whether null is allowed as value of a body to unmarshall.
{"type": "boolean"}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.ValidateDefinition
Validates a message based on an expression
{"type": "object", "anyOf": [{}], "properties": {"disabled": {"type": "boolean"}, "expression": {}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "predicate-exception-factory": {"type": "string"}}}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
expression
Expression to use for validation as a predicate. The expression should return either true or false. If returning false the message is invalid and an exception is thrown.
{}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
predicate-exception-factory
The bean id of custom PredicateExceptionFactory to use for creating the exception when the validation fails. By default, Camel will throw PredicateValidationException. By using a custom factory you can control which exception to throw instead.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.ValueDefinition
A single value
{"oneOf": [{"type": "string"}, {"type": "object", "properties": {"value": {"type": "string"}}}]}
camel-yaml-dsl.json
value
Property value
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.WhenDefinition
Triggers a route when the expression evaluates to true
{"type": "object", "anyOf": [{}], "properties": {"disabled": {"type": "boolean"}, "expression": {}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "steps": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
expression
Expression used as the predicate to evaluate whether this when should trigger and route the message or not.
{}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.WhenSkipSendToEndpointDefinition
Predicate to determine if the message should be sent or not to the endpoint, when using interceptSentToEndpoint.
{"type": "object", "anyOf": [{}], "properties": {"disabled": {"type": "boolean"}, "expression": {}, "id": {"type": "string"}, "inherit-error-handler": {"type": "boolean"}, "steps": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
expression
Expression used as the predicate to evaluate whether the message should be sent or not to the endpoint
{}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.WireTapDefinition
Routes a copy of a message (or creates a new message) to a secondary destination while continue routing the original message.
{"type": "object", "properties": {"allow-optimised-components": {"type": "boolean"}, "auto-start-components": {"type": "boolean"}, "cache-size": {"type": "number"}, "copy": {"type": "boolean"}, "disabled": {"type": "boolean"}, "dynamic-uri": {"type": "boolean"}, "executor-service": {"type": "string"}, "id": {"type": "string"}, "ignore-invalid-endpoint": {"type": "boolean"}, "inherit-error-handler": {"type": "boolean"}, "on-prepare": {"type": "string"}, "parameters": {"type": "object"}, "pattern": {"type": "string", "enum": ["InOnly", "InOut"]}, "uri": {"type": "string"}}, "required": ["uri"]}
camel-yaml-dsl.json
allow-optimised-components
Whether to allow components to optimise toD if they are org.apache.camel.spi.SendDynamicAware .
{"type": "boolean"}
camel-yaml-dsl.json
auto-start-components
Whether to auto startup components when toD is starting up.
{"type": "boolean"}
camel-yaml-dsl.json
cache-size
Sets the maximum size used by the org.apache.camel.spi.ProducerCache which is used to cache and reuse producers when using this recipient list, when uris are reused. Beware that when using dynamic endpoints then it affects how well the cache can be utilized. If each dynamic endpoint is unique then its best to turn off caching by setting this to -1, which allows Camel to not cache both the producers and endpoints; they are regarded as prototype scoped and will be stopped and discarded after use. This reduces memory usage as otherwise producers/endpoints are stored in memory in the caches. However if there are a high degree of dynamic endpoints that have been used before, then it can benefit to use the cache to reuse both producers and endpoints and therefore the cache size can be set accordingly or rely on the default size (1000). If there is a mix of unique and used before dynamic endpoints, then setting a reasonable cache size can help reduce memory usage to avoid storing too many non frequent used producers.
{"type": "number"}
camel-yaml-dsl.json
copy
Uses a copy of the original exchange
{"type": "boolean"}
camel-yaml-dsl.json
description
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
disabled
Whether to disable this EIP from the route during build time. Once an EIP has been disabled then it cannot be enabled later at runtime.
{"type": "boolean"}
camel-yaml-dsl.json
dynamic-uri
Whether the uri is dynamic or static. If the uri is dynamic then the simple language is used to evaluate a dynamic uri to use as the wire-tap destination, for each incoming message. This works similar to how the toD EIP pattern works. If static then the uri is used as-is as the wire-tap destination.
{"type": "boolean"}
camel-yaml-dsl.json
executor-service
Uses a custom thread pool
{"type": "string"}
camel-yaml-dsl.json
id
Sets the id of this node
{"type": "string"}
camel-yaml-dsl.json
ignore-invalid-endpoint
Whether to ignore invalid endpoint URIs and skip sending the message.
{"type": "boolean"}
camel-yaml-dsl.json
on-prepare
Uses the Processor when preparing the org.apache.camel.Exchange to be sent. This can be used to deep-clone messages that should be sent, or any custom logic needed before the exchange is sent.
{"type": "string"}
camel-yaml-dsl.json
pattern
Sets the optional ExchangePattern used to invoke this endpoint
{"type": "string", "enum": ["InOnly", "InOut"]}
camel-yaml-dsl.json
uri
The uri of the endpoint to send to. The uri can be dynamic computed using the org.apache.camel.language.simple.SimpleLanguage expression.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.app.ApplicationDefinition
If beans reminds Spring application too much, we can use camel.
{"type": "object", "properties": {"bean": {"type": "array", "items": {}}, "component-scan": {"type": "array", "items": {}}, "rest": {"type": "array", "items": {}}, "rest-configuration": {"type": "array", "items": {}}, "route": {"type": "array", "items": {}}, "route-configuration": {"type": "array", "items": {}}, "route-template": {"type": "array", "items": {}}, "templated-route": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
org.apache.camel.model.app.BeansDefinition
A grouping POJO (and related XML root element) that's historically associated with entire application (or its distinguished fragment). This class is not meant to be used with Camel Java DSL, but it's needed to generate XML Schema and MX parser methods.
{"type": "object", "properties": {"bean": {"type": "array", "items": {}}, "component-scan": {"type": "array", "items": {}}, "rest": {"type": "array", "items": {}}, "rest-configuration": {"type": "array", "items": {}}, "route": {"type": "array", "items": {}}, "route-configuration": {"type": "array", "items": {}}, "route-template": {"type": "array", "items": {}}, "templated-route": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
properties
Set client properties to use. These properties are specific to what service call implementation are in use. For example if using a different one, then the client properties are defined according to the specific service in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
servers
Sets the server blacklist. Each entry can be a list of servers separated by comma in the format: servicehost:port,servicehost2:port,servicehost3:port
{"type": "array", "items": {"type": "string"}}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
properties
Set client properties to use. These properties are specific to what service call implementation are in use. For example if using a different one, then the client properties are defined according to the specific service in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
timeout
Set the time the services will be retained.
{"type": "number", "default": "60"}
camel-yaml-dsl.json
units
Set the time unit for the timeout.
{"type": "string", "default": "SECONDS", "enum": ["NANOSECONDS", "MICROSECONDS", "MILLISECONDS", "SECONDS", "MINUTES", "HOURS", "DAYS"]}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
properties
Set client properties to use. These properties are specific to what service call implementation are in use. For example if using a different one, then the client properties are defined according to the specific service in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
properties
Set client properties to use. These properties are specific to what service call implementation are in use. For example if using a different one, then the client properties are defined according to the specific service in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
acl-token
Sets the ACL token to be used with Consul
{"type": "string"}
camel-yaml-dsl.json
block-seconds
The seconds to wait for a watch event, default 10 seconds
{"type": "number", "default": "10"}
camel-yaml-dsl.json
connect-timeout-millis
Connect timeout for OkHttpClient
{"type": "number"}
camel-yaml-dsl.json
datacenter
The data center
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
password
Sets the password to be used for basic authentication
{"type": "string"}
camel-yaml-dsl.json
properties
Set client properties to use. These properties are specific to what service call implementation are in use. For example if using a different one, then the client properties are defined according to the specific service in use.
{"type": "array", "items": {}}
camel-yaml-dsl.json
read-timeout-millis
Read timeout for OkHttpClient
{"type": "number"}
camel-yaml-dsl.json
url
The Consul agent URL
{"type": "string"}
camel-yaml-dsl.json
user-name
Sets the username to be used for basic authentication
{"type": "string"}
camel-yaml-dsl.json
write-timeout-millis
Write timeout for OkHttpClient
{"type": "number"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}