schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
camel-yaml-dsl.json
using-iterator
If the asn1 file has more than one entry, the setting this option to true, allows working with the splitter EIP, to split the data using an iterator in a streaming mode.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.AvroDataFormat
Serialize and deserialize messages using Apache Avro binary data format.
{"oneOf": [{"type": "string"}, {"type": "object", "properties": {"allow-jms-type": {"type": "boolean"}, "allow-unmarshall-type": {"type": "boolean"}, "auto-discover-object-mapper": {"type": "boolean"}, "auto-discover-schema-resolver": {"type": "boolean"}, "collection-type": {"type": "string"}, "content-type-header": {"type": "boolean"}, "disable-features": {"type": "string"}, "enable-features": {"type": "string"}, "id": {"type": "string"}, "include": {"type": "string"}, "instance-class-name": {"type": "string"}, "json-view": {"type": "string"}, "library": {"type": "string", "default": "ApacheAvro", "enum": ["ApacheAvro", "Jackson"]}, "module-class-names": {"type": "string"}, "module-refs": {"type": "string"}, "object-mapper": {"type": "string"}, "schema-resolver": {"type": "string"}, "timezone": {"type": "string"}, "unmarshal-type": {"type": "string"}, "use-default-object-mapper": {"type": "boolean"}, "use-list": {"type": "boolean"}}}]}
camel-yaml-dsl.json
allow-jms-type
Used for JMS users to allow the JMSType header from the JMS spec to specify a FQN classname to use to unmarshal to.
{"type": "boolean"}
camel-yaml-dsl.json
allow-unmarshall-type
If enabled then Jackson is allowed to attempt to use the CamelJacksonUnmarshalType header during the unmarshalling. This should only be enabled when desired to be used.
{"type": "boolean"}
camel-yaml-dsl.json
auto-discover-object-mapper
If set to true then Jackson will lookup for an objectMapper into the registry
{"type": "boolean"}
camel-yaml-dsl.json
auto-discover-schema-resolver
When not disabled, the SchemaResolver will be looked up into the registry
{"type": "boolean"}
camel-yaml-dsl.json
collection-type
Refers to a custom collection type to lookup in the registry to use. This option should rarely be used, but allows to use different collection types than java.util.Collection based as default.
{"type": "string"}
camel-yaml-dsl.json
content-type-header
Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
{"type": "boolean"}
camel-yaml-dsl.json
disable-features
Set of features to disable on the Jackson com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that matches a enum from com.fasterxml.jackson.databind.SerializationFeature, com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jackson.databind.MapperFeature Multiple features can be separated by comma
{"type": "string"}
camel-yaml-dsl.json
enable-features
Set of features to enable on the Jackson com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that matches a enum from com.fasterxml.jackson.databind.SerializationFeature, com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jackson.databind.MapperFeature Multiple features can be separated by comma
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
include
If you want to marshal a pojo to JSON, and the pojo has some fields with null values. And you want to skip these null values, you can set this option to NON_NULL
{"type": "string"}
camel-yaml-dsl.json
instance-class-name
Class name to use for marshal and unmarshalling
{"type": "string"}
camel-yaml-dsl.json
json-view
When marshalling a POJO to JSON you might want to exclude certain fields from the JSON output. With Jackson you can use JSON views to accomplish this. This option is to refer to the class which has JsonView annotations
{"type": "string"}
camel-yaml-dsl.json
library
Which Avro library to use.
{"type": "string", "default": "ApacheAvro", "enum": ["ApacheAvro", "Jackson"]}
camel-yaml-dsl.json
module-class-names
To use custom Jackson modules com.fasterxml.jackson.databind.Module specified as a String with FQN class names. Multiple classes can be separated by comma.
{"type": "string"}
camel-yaml-dsl.json
module-refs
To use custom Jackson modules referred from the Camel registry. Multiple modules can be separated by comma.
{"type": "string"}
camel-yaml-dsl.json
object-mapper
Lookup and use the existing ObjectMapper with the given id when using Jackson.
{"type": "string"}
camel-yaml-dsl.json
schema-resolver
Optional schema resolver used to lookup schemas for the data in transit.
{"type": "string"}
camel-yaml-dsl.json
timezone
If set then Jackson will use the Timezone when marshalling/unmarshalling.
{"type": "string"}
camel-yaml-dsl.json
unmarshal-type
Class name of the java type to use when unmarshalling
{"type": "string"}
camel-yaml-dsl.json
use-default-object-mapper
Whether to lookup and use default Jackson ObjectMapper from the registry.
{"type": "boolean"}
camel-yaml-dsl.json
use-list
To unmarshal to a List of Map or a List of Pojo.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.BarcodeDataFormat
Transform strings to various 1D/2D barcode bitmap formats and back.
{"type": "object", "properties": {"barcode-format": {"type": "string"}, "height": {"type": "number"}, "id": {"type": "string"}, "image-type": {"type": "string"}, "width": {"type": "number"}}}
camel-yaml-dsl.json
barcode-format
Barcode format such as QR-Code
{"type": "string"}
camel-yaml-dsl.json
height
Height of the barcode
{"type": "number"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
image-type
Image type of the barcode such as png
{"type": "string"}
camel-yaml-dsl.json
width
Width of the barcode
{"type": "number"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.Base64DataFormat
Encode and decode data using Base64.
{"type": "object", "properties": {"id": {"type": "string"}, "line-length": {"type": "number", "default": "76"}, "line-separator": {"type": "string"}, "url-safe": {"type": "boolean"}}}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
line-length
To specific a maximum line length for the encoded data. By default 76 is used.
{"type": "number", "default": "76"}
camel-yaml-dsl.json
line-separator
The line separators to use. Uses new line characters (CRLF) by default.
{"type": "string"}
camel-yaml-dsl.json
url-safe
Instead of emitting '' and '/' we emit '-' and '_' respectively. urlSafe is only applied to encode operations. Decoding seamlessly handles both modes. Is by default false.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.BindyDataFormat
Marshal and unmarshal Java beans from and to flat payloads (such as CSV, delimited, fixed length formats, or FIX messages).
{"type": "object", "properties": {"allow-empty-stream": {"type": "boolean"}, "class-type": {"type": "string"}, "id": {"type": "string"}, "locale": {"type": "string"}, "type": {"type": "string", "enum": ["Csv", "Fixed", "KeyValue"]}, "unwrap-single-instance": {"type": "boolean"}}}
camel-yaml-dsl.json
allow-empty-stream
Whether to allow empty streams in the unmarshal process. If true, no exception will be thrown when a body without records is provided.
{"type": "boolean"}
camel-yaml-dsl.json
class-type
Name of model class to use.
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
locale
To configure a default locale to use, such as us for united states. To use the JVM platform default locale then use the name default
{"type": "string"}
camel-yaml-dsl.json
type
Whether to use Csv, Fixed, or KeyValue.
{"type": "string", "enum": ["Csv", "Fixed", "KeyValue"]}
camel-yaml-dsl.json
unwrap-single-instance
When unmarshalling should a single instance be unwrapped and returned instead of wrapped in a java.util.List.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.CBORDataFormat
Unmarshal a CBOR payload to POJO and back.
{"type": "object", "properties": {"allow-jms-type": {"type": "boolean"}, "allow-unmarshall-type": {"type": "boolean"}, "collection-type": {"type": "string"}, "disable-features": {"type": "string"}, "enable-features": {"type": "string"}, "id": {"type": "string"}, "object-mapper": {"type": "string"}, "pretty-print": {"type": "boolean"}, "unmarshal-type": {"type": "string"}, "use-default-object-mapper": {"type": "boolean"}, "use-list": {"type": "boolean"}}}
camel-yaml-dsl.json
allow-jms-type
Used for JMS users to allow the JMSType header from the JMS spec to specify a FQN classname to use to unmarshal to.
{"type": "boolean"}
camel-yaml-dsl.json
allow-unmarshall-type
If enabled then Jackson CBOR is allowed to attempt to use the CamelCBORUnmarshalType header during the unmarshalling. This should only be enabled when desired to be used.
{"type": "boolean"}
camel-yaml-dsl.json
collection-type
Refers to a custom collection type to lookup in the registry to use. This option should rarely be used, but allows to use different collection types than java.util.Collection based as default.
{"type": "string"}
camel-yaml-dsl.json
disable-features
Set of features to disable on the Jackson com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that matches a enum from com.fasterxml.jackson.databind.SerializationFeature, com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jackson.databind.MapperFeature Multiple features can be separated by comma
{"type": "string"}
camel-yaml-dsl.json
enable-features
Set of features to enable on the Jackson com.fasterxml.jackson.databind.ObjectMapper. The features should be a name that matches a enum from com.fasterxml.jackson.databind.SerializationFeature, com.fasterxml.jackson.databind.DeserializationFeature, or com.fasterxml.jackson.databind.MapperFeature Multiple features can be separated by comma
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
object-mapper
Lookup and use the existing CBOR ObjectMapper with the given id when using Jackson.
{"type": "string"}
camel-yaml-dsl.json
pretty-print
To enable pretty printing output nicely formatted. Is by default false.
{"type": "boolean"}
camel-yaml-dsl.json
unmarshal-type
Class name of the java type to use when unmarshalling
{"type": "string"}
camel-yaml-dsl.json
use-default-object-mapper
Whether to lookup and use default Jackson CBOR ObjectMapper from the registry.
{"type": "boolean"}
camel-yaml-dsl.json
use-list
To unmarshal to a List of Map or a List of Pojo.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.CryptoDataFormat
Encrypt and decrypt messages using Java Cryptography Extension (JCE).
{"type": "object", "properties": {"algorithm": {"type": "string"}, "algorithm-parameter-ref": {"type": "string"}, "buffer-size": {"type": "number", "default": "4096"}, "crypto-provider": {"type": "string"}, "id": {"type": "string"}, "init-vector-ref": {"type": "string"}, "inline": {"type": "boolean"}, "key-ref": {"type": "string"}, "mac-algorithm": {"type": "string", "default": "HmacSHA1"}, "should-append-hmac": {"type": "boolean"}}}
camel-yaml-dsl.json
algorithm
The JCE algorithm name indicating the cryptographic algorithm that will be used.
{"type": "string"}
camel-yaml-dsl.json
algorithm-parameter-ref
A JCE AlgorithmParameterSpec used to initialize the Cipher. Will lookup the type using the given name as a java.security.spec.AlgorithmParameterSpec type.
{"type": "string"}
camel-yaml-dsl.json
buffer-size
The size of the buffer used in the signature process.
{"type": "number", "default": "4096"}
camel-yaml-dsl.json
crypto-provider
The name of the JCE Security Provider that should be used.
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
init-vector-ref
Refers to a byte array containing the Initialization Vector that will be used to initialize the Cipher.
{"type": "string"}
camel-yaml-dsl.json
inline
Flag indicating that the configured IV should be inlined into the encrypted data stream. Is by default false.
{"type": "boolean"}
camel-yaml-dsl.json
key-ref
Refers to the secret key to lookup from the register to use.
{"type": "string"}
camel-yaml-dsl.json
mac-algorithm
The JCE algorithm name indicating the Message Authentication algorithm.
{"type": "string", "default": "HmacSHA1"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.CsvDataFormat
Handle CSV (Comma Separated Values) payloads.
{"oneOf": [{"type": "string"}, {"type": "object", "properties": {"allow-missing-column-names": {"type": "boolean"}, "capture-header-record": {"type": "boolean"}, "comment-marker": {"type": "string"}, "comment-marker-disabled": {"type": "boolean"}, "delimiter": {"type": "string"}, "escape": {"type": "string"}, "escape-disabled": {"type": "boolean"}, "format-name": {"type": "string", "default": "DEFAULT", "enum": ["DEFAULT", "EXCEL", "INFORMIX_UNLOAD", "INFORMIX_UNLOAD_CSV", "MYSQL", "RFC4180"]}, "format-ref": {"type": "string"}, "header": {"type": "array", "items": {"type": "string"}}, "header-disabled": {"type": "boolean"}, "id": {"type": "string"}, "ignore-empty-lines": {"type": "boolean"}, "ignore-header-case": {"type": "boolean"}, "ignore-surrounding-spaces": {"type": "boolean"}, "lazy-load": {"type": "boolean"}, "marshaller-factory-ref": {"type": "string"}, "null-string": {"type": "string"}, "null-string-disabled": {"type": "boolean"}, "quote": {"type": "string"}, "quote-disabled": {"type": "boolean"}, "quote-mode": {"type": "string", "enum": ["ALL", "ALL_NON_NULL", "MINIMAL", "NON_NUMERIC", "NONE"]}, "record-converter-ref": {"type": "string"}, "record-separator": {"type": "string"}, "record-separator-disabled": {"type": "string"}, "skip-header-record": {"type": "boolean"}, "trailing-delimiter": {"type": "boolean"}, "trim": {"type": "boolean"}, "use-maps": {"type": "boolean"}, "use-ordered-maps": {"type": "boolean"}}}]}
camel-yaml-dsl.json
allow-missing-column-names
Whether to allow missing column names.
{"type": "boolean"}
camel-yaml-dsl.json
capture-header-record
Whether the unmarshalling should capture the header record and store it in the message header
{"type": "boolean"}
camel-yaml-dsl.json
comment-marker
Sets the comment marker of the reference format.
{"type": "string"}
camel-yaml-dsl.json
comment-marker-disabled
Disables the comment marker of the reference format.
{"type": "boolean"}
camel-yaml-dsl.json
delimiter
Sets the delimiter to use. The default value is , (comma)
{"type": "string"}
camel-yaml-dsl.json
escape
Sets the escape character to use
{"type": "string"}
camel-yaml-dsl.json
escape-disabled
Use for disabling using escape character
{"type": "boolean"}
camel-yaml-dsl.json
format-name
The name of the format to use, the default value is CSVFormat.DEFAULT
{"type": "string", "default": "DEFAULT", "enum": ["DEFAULT", "EXCEL", "INFORMIX_UNLOAD", "INFORMIX_UNLOAD_CSV", "MYSQL", "RFC4180"]}
camel-yaml-dsl.json
format-ref
The reference format to use, it will be updated with the other format options, the default value is CSVFormat.DEFAULT
{"type": "string"}
camel-yaml-dsl.json
header
To configure the CSV headers
{"type": "array", "items": {"type": "string"}}
camel-yaml-dsl.json
header-disabled
Use for disabling headers
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
ignore-empty-lines
Whether to ignore empty lines.
{"type": "boolean"}
camel-yaml-dsl.json
ignore-header-case
Sets whether or not to ignore case when accessing header names.
{"type": "boolean"}
camel-yaml-dsl.json
ignore-surrounding-spaces
Whether to ignore surrounding spaces
{"type": "boolean"}
camel-yaml-dsl.json
lazy-load
Whether the unmarshalling should produce an iterator that reads the lines on the fly or if all the lines must be read at one.
{"type": "boolean"}
camel-yaml-dsl.json
marshaller-factory-ref
Sets the implementation of the CsvMarshallerFactory interface which is able to customize marshalling/unmarshalling behavior by extending CsvMarshaller or creating it from scratch.
{"type": "string"}
camel-yaml-dsl.json
null-string
Sets the null string
{"type": "string"}
camel-yaml-dsl.json
null-string-disabled
Used to disable null strings
{"type": "boolean"}
camel-yaml-dsl.json
quote
Sets the quote which by default is
{"type": "string"}
camel-yaml-dsl.json
quote-disabled
Used to disable quotes
{"type": "boolean"}
camel-yaml-dsl.json
quote-mode
Sets the quote mode
{"type": "string", "enum": ["ALL", "ALL_NON_NULL", "MINIMAL", "NON_NUMERIC", "NONE"]}
camel-yaml-dsl.json
record-converter-ref
Refers to a custom CsvRecordConverter to lookup from the registry to use.
{"type": "string"}
camel-yaml-dsl.json
record-separator
Sets the record separator (aka new line) which by default is new line characters (CRLF)
{"type": "string"}
camel-yaml-dsl.json
record-separator-disabled
Used for disabling record separator
{"type": "string"}
camel-yaml-dsl.json
skip-header-record
Whether to skip the header record in the output
{"type": "boolean"}
camel-yaml-dsl.json
trailing-delimiter
Sets whether or not to add a trailing delimiter.
{"type": "boolean"}
camel-yaml-dsl.json
trim
Sets whether or not to trim leading and trailing blanks.
{"type": "boolean"}
camel-yaml-dsl.json
use-maps
Whether the unmarshalling should produce maps (HashMap)for the lines values instead of lists. It requires to have header (either defined or collected).
{"type": "boolean"}
camel-yaml-dsl.json
use-ordered-maps
Whether the unmarshalling should produce ordered maps (LinkedHashMap) for the lines values instead of lists. It requires to have header (either defined or collected).
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.CustomDataFormat
Delegate to a custom org.apache.camel.spi.DataFormat implementation via Camel registry.
{"oneOf": [{"type": "string"}, {"type": "object", "properties": {"id": {"type": "string"}, "ref": {"type": "string"}}}], "required": ["ref"]}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
ref
Reference to the custom org.apache.camel.spi.DataFormat to lookup from the Camel registry.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.DataFormatsDefinition
Configure data formats.
{"type": "object", "properties": {"asn1": {}, "avro": {}, "barcode": {}, "base64": {}, "bindy": {}, "cbor": {}, "crypto": {}, "csv": {}, "custom": {}, "fhir-json": {}, "fhir-xml": {}, "flatpack": {}, "grok": {}, "gzip-deflater": {}, "hl7": {}, "ical": {}, "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
org.apache.camel.model.dataformat.FhirJsonDataFormat
Marshall and unmarshall FHIR objects to/from JSON.
{"type": "object", "properties": {"content-type-header": {"type": "boolean"}, "dont-encode-elements": {"type": "string"}, "dont-strip-versions-from-references-at-paths": {"type": "string"}, "encode-elements": {"type": "string"}, "encode-elements-applies-to-child-resources-only": {"type": "boolean"}, "fhir-context": {"type": "string"}, "fhir-version": {"type": "string", "default": "R4", "enum": ["DSTU2", "DSTU2_HL7ORG", "DSTU2_1", "DSTU3", "R4", "R5"]}, "force-resource-id": {"type": "string"}, "id": {"type": "string"}, "omit-resource-id": {"type": "boolean"}, "override-resource-id-with-bundle-entry-full-url": {"type": "boolean"}, "parser-error-handler": {"type": "string"}, "parser-options": {"type": "string"}, "prefer-types": {"type": "string"}, "pretty-print": {"type": "boolean"}, "server-base-url": {"type": "string"}, "strip-versions-from-references": {"type": "boolean"}, "summary-mode": {"type": "boolean"}, "suppress-narratives": {"type": "boolean"}}}
camel-yaml-dsl.json
content-type-header
Whether the data format should set the Content-Type header with the type from the data format. For example application/xml for data formats marshalling to XML, or application/json for data formats marshalling to JSON
{"type": "boolean"}