schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
camel-yaml-dsl.json
org.apache.camel.model.dataformat.SyslogDataFormat
Marshall SyslogMessages to RFC3164 and RFC5424 messages and back.
{"type": "object", "properties": {"id": {"type": "string"}}}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.TarFileDataFormat
Archive files into tarballs or extract files from tarballs.
{"type": "object", "properties": {"allow-empty-directory": {"type": "boolean"}, "id": {"type": "string"}, "max-decompressed-size": {"type": "number", "default": "1073741824"}, "preserve-path-elements": {"type": "boolean"}, "using-iterator": {"type": "boolean"}}}
camel-yaml-dsl.json
allow-empty-directory
If the tar file has more than one entry, setting this option to true, allows to get the iterator even if the directory is empty
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
max-decompressed-size
Set the maximum decompressed size of a tar file (in bytes). The default value if not specified corresponds to 1 gigabyte. An IOException will be thrown if the decompressed size exceeds this amount. Set to -1 to disable setting a maximum decompressed size.
{"type": "number", "default": "1073741824"}
camel-yaml-dsl.json
preserve-path-elements
If the file name contains path elements, setting this option to true, allows the path to be maintained in the tar file.
{"type": "boolean"}
camel-yaml-dsl.json
using-iterator
If the tar 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.ThriftDataFormat
Serialize and deserialize messages using Apache Thrift binary data format.
{"oneOf": [{"type": "string"}, {"type": "object", "properties": {"content-type-format": {"type": "string", "default": "binary", "enum": ["binary", "json", "sjson"]}, "content-type-header": {"type": "boolean"}, "id": {"type": "string"}, "instance-class": {"type": "string"}}}]}
camel-yaml-dsl.json
content-type-format
Defines a content type format in which thrift message will be serialized/deserialized from(to) the Java been. The format can either be native or json for either native binary thrift, json or simple json fields representation. The default value is binary.
{"type": "string", "default": "binary", "enum": ["binary", "json", "sjson"]}
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
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
instance-class
Name of class to use when unmarshalling
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.TidyMarkupDataFormat
Parse (potentially invalid) HTML into valid HTML or DOM.
{"type": "object", "properties": {"data-object-type": {"type": "string", "default": "org.w3c.dom.Node", "enum": ["org.w3c.dom.Node", "java.lang.String"]}, "id": {"type": "string"}, "omit-xml-declaration": {"type": "boolean"}}}
camel-yaml-dsl.json
data-object-type
What data type to unmarshal as, can either be org.w3c.dom.Node or java.lang.String. Is by default org.w3c.dom.Node
{"type": "string", "default": "org.w3c.dom.Node", "enum": ["org.w3c.dom.Node", "java.lang.String"]}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
omit-xml-declaration
When returning a String, do we omit the XML declaration in the top.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.UniVocityCsvDataFormat
Marshal and unmarshal Java objects from and to CSV (Comma Separated Values) using UniVocity Parsers.
{"type": "object", "properties": {"as-map": {"type": "boolean"}, "comment": {"type": "string", "default": "#"}, "delimiter": {"type": "string", "default": ","}, "empty-value": {"type": "string"}, "header-extraction-enabled": {"type": "boolean"}, "headers-disabled": {"type": "boolean"}, "id": {"type": "string"}, "ignore-leading-whitespaces": {"type": "boolean"}, "ignore-trailing-whitespaces": {"type": "boolean"}, "lazy-load": {"type": "boolean"}, "line-separator": {"type": "string"}, "normalized-line-separator": {"type": "string", "default": "\\n"}, "null-value": {"type": "string"}, "number-of-records-to-read": {"type": "number"}, "quote": {"type": "string", "default": "\""}, "quote-all-fields": {"type": "boolean"}, "quote-escape": {"type": "string", "default": "\""}, "skip-empty-lines": {"type": "boolean"}, "univocity-header": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
as-map
Whether the unmarshalling should produce maps for the lines values instead of lists. It requires to have header (either defined or collected). The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
comment
The comment symbol. The default value is #
{"type": "string", "default": "#"}
camel-yaml-dsl.json
delimiter
The delimiter of values
{"type": "string", "default": ","}
camel-yaml-dsl.json
empty-value
The String representation of an empty value
{"type": "string"}
camel-yaml-dsl.json
header-extraction-enabled
Whether or not the header must be read in the first line of the test document The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
headers-disabled
Whether or not the headers are disabled. When defined, this option explicitly sets the headers as null which indicates that there is no header. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
ignore-leading-whitespaces
Whether or not the leading white spaces must be ignored. The default value is true
{"type": "boolean"}
camel-yaml-dsl.json
ignore-trailing-whitespaces
Whether or not the trailing white spaces must be ignored. The default value is true
{"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. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
line-separator
The line separator of the files The default value is to use the JVM platform line separator
{"type": "string"}
camel-yaml-dsl.json
normalized-line-separator
The normalized line separator of the files The default value is a new line character.
{"type": "string", "default": "\\n"}
camel-yaml-dsl.json
null-value
The string representation of a null value. The default value is null
{"type": "string"}
camel-yaml-dsl.json
number-of-records-to-read
The maximum number of record to read.
{"type": "number"}
camel-yaml-dsl.json
quote
The quote symbol.
{"type": "string", "default": "\""}
camel-yaml-dsl.json
quote-all-fields
Whether or not all values must be quoted when writing them.
{"type": "boolean"}
camel-yaml-dsl.json
quote-escape
The quote escape symbol
{"type": "string", "default": "\""}
camel-yaml-dsl.json
skip-empty-lines
Whether or not the empty lines must be ignored. The default value is true
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.UniVocityFixedDataFormat
Marshal and unmarshal Java objects from and to fixed length records using UniVocity Parsers.
{"type": "object", "properties": {"as-map": {"type": "boolean"}, "comment": {"type": "string", "default": "#"}, "empty-value": {"type": "string"}, "header-extraction-enabled": {"type": "boolean"}, "headers-disabled": {"type": "boolean"}, "id": {"type": "string"}, "ignore-leading-whitespaces": {"type": "boolean"}, "ignore-trailing-whitespaces": {"type": "boolean"}, "lazy-load": {"type": "boolean"}, "line-separator": {"type": "string"}, "normalized-line-separator": {"type": "string", "default": "\\n"}, "null-value": {"type": "string"}, "number-of-records-to-read": {"type": "number"}, "padding": {"type": "string"}, "record-ends-on-newline": {"type": "boolean"}, "skip-empty-lines": {"type": "boolean"}, "skip-trailing-chars-until-newline": {"type": "boolean"}, "univocity-header": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
as-map
Whether the unmarshalling should produce maps for the lines values instead of lists. It requires to have header (either defined or collected). The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
comment
The comment symbol. The default value is #
{"type": "string", "default": "#"}
camel-yaml-dsl.json
empty-value
The String representation of an empty value
{"type": "string"}
camel-yaml-dsl.json
header-extraction-enabled
Whether or not the header must be read in the first line of the test document The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
headers-disabled
Whether or not the headers are disabled. When defined, this option explicitly sets the headers as null which indicates that there is no header. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
ignore-leading-whitespaces
Whether or not the leading white spaces must be ignored. The default value is true
{"type": "boolean"}
camel-yaml-dsl.json
ignore-trailing-whitespaces
Whether or not the trailing white spaces must be ignored. The default value is true
{"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. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
line-separator
The line separator of the files The default value is to use the JVM platform line separator
{"type": "string"}
camel-yaml-dsl.json
normalized-line-separator
The normalized line separator of the files The default value is a new line character.
{"type": "string", "default": "\\n"}
camel-yaml-dsl.json
null-value
The string representation of a null value. The default value is null
{"type": "string"}
camel-yaml-dsl.json
number-of-records-to-read
The maximum number of record to read.
{"type": "number"}
camel-yaml-dsl.json
padding
The padding character. The default value is a space
{"type": "string"}
camel-yaml-dsl.json
record-ends-on-newline
Whether or not the record ends on new line. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
skip-empty-lines
Whether or not the empty lines must be ignored. The default value is true
{"type": "boolean"}
camel-yaml-dsl.json
skip-trailing-chars-until-newline
Whether or not the trailing characters until new line must be ignored. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.UniVocityHeader
To configure headers for UniVocity data formats.
{"type": "object", "properties": {"length": {"type": "string"}, "name": {"type": "string"}}}
camel-yaml-dsl.json
length
Header length
{"type": "string"}
camel-yaml-dsl.json
name
Header name
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.UniVocityTsvDataFormat
Marshal and unmarshal Java objects from and to TSV (Tab-Separated Values) records using UniVocity Parsers.
{"type": "object", "properties": {"as-map": {"type": "boolean"}, "comment": {"type": "string", "default": "#"}, "empty-value": {"type": "string"}, "escape-char": {"type": "string", "default": "\\"}, "header-extraction-enabled": {"type": "boolean"}, "headers-disabled": {"type": "boolean"}, "id": {"type": "string"}, "ignore-leading-whitespaces": {"type": "boolean"}, "ignore-trailing-whitespaces": {"type": "boolean"}, "lazy-load": {"type": "boolean"}, "line-separator": {"type": "string"}, "normalized-line-separator": {"type": "string", "default": "\\n"}, "null-value": {"type": "string"}, "number-of-records-to-read": {"type": "number"}, "skip-empty-lines": {"type": "boolean"}, "univocity-header": {"type": "array", "items": {}}}}
camel-yaml-dsl.json
as-map
Whether the unmarshalling should produce maps for the lines values instead of lists. It requires to have header (either defined or collected). The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
comment
The comment symbol. The default value is #
{"type": "string", "default": "#"}
camel-yaml-dsl.json
empty-value
The String representation of an empty value
{"type": "string"}
camel-yaml-dsl.json
escape-char
The escape character.
{"type": "string", "default": "\\"}
camel-yaml-dsl.json
header-extraction-enabled
Whether or not the header must be read in the first line of the test document The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
headers-disabled
Whether or not the headers are disabled. When defined, this option explicitly sets the headers as null which indicates that there is no header. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
ignore-leading-whitespaces
Whether or not the leading white spaces must be ignored. The default value is true
{"type": "boolean"}
camel-yaml-dsl.json
ignore-trailing-whitespaces
Whether or not the trailing white spaces must be ignored. The default value is true
{"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. The default value is false
{"type": "boolean"}
camel-yaml-dsl.json
line-separator
The line separator of the files The default value is to use the JVM platform line separator
{"type": "string"}
camel-yaml-dsl.json
normalized-line-separator
The normalized line separator of the files The default value is a new line character.
{"type": "string", "default": "\\n"}
camel-yaml-dsl.json
null-value
The string representation of a null value. The default value is null
{"type": "string"}
camel-yaml-dsl.json
number-of-records-to-read
The maximum number of record to read.
{"type": "number"}
camel-yaml-dsl.json
skip-empty-lines
Whether or not the empty lines must be ignored. The default value is true
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.XMLSecurityDataFormat
Encrypt and decrypt XML payloads using Apache Santuario.
{"type": "object", "properties": {"add-key-value-for-encrypted-key": {"type": "boolean"}, "digest-algorithm": {"type": "string", "default": "SHA1", "enum": ["SHA1", "SHA256", "SHA512"]}, "id": {"type": "string"}, "key-cipher-algorithm": {"type": "string", "default": "RSA_OAEP", "enum": ["RSA_v1dot5", "RSA_OAEP", "RSA_OAEP_11"]}, "key-or-trust-store-parameters-ref": {"type": "string"}, "key-password": {"type": "string"}, "mgf-algorithm": {"type": "string", "default": "MGF1_SHA1", "enum": ["MGF1_SHA1", "MGF1_SHA256", "MGF1_SHA512"]}, "pass-phrase": {"type": "string"}, "pass-phrase-byte": {"type": "string", "format": "binary"}, "recipient-key-alias": {"type": "string"}, "secure-tag": {"type": "string"}, "secure-tag-contents": {"type": "boolean"}, "xml-cipher-algorithm": {"type": "string", "default": "AES-256-GCM", "enum": ["TRIPLEDES", "AES_128", "AES_128_GCM", "AES_192", "AES_192_GCM", "AES_256", "AES_256_GCM", "SEED_128", "CAMELLIA_128", "CAMELLIA_192", "CAMELLIA_256"]}}}
camel-yaml-dsl.json
add-key-value-for-encrypted-key
Whether to add the public key used to encrypt the session key as a KeyValue in the EncryptedKey structure or not.
{"type": "boolean"}
camel-yaml-dsl.json
digest-algorithm
The digest algorithm to use with the RSA OAEP algorithm. The available choices are: XMLCipher.SHA1 XMLCipher.SHA256 XMLCipher.SHA512 The default value is XMLCipher.SHA1
{"type": "string", "default": "SHA1", "enum": ["SHA1", "SHA256", "SHA512"]}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
key-cipher-algorithm
The cipher algorithm to be used for encryption/decryption of the asymmetric key. The available choices are: XMLCipher.RSA_v1dot5 XMLCipher.RSA_OAEP XMLCipher.RSA_OAEP_11 The default value is XMLCipher.RSA_OAEP
{"type": "string", "default": "RSA_OAEP", "enum": ["RSA_v1dot5", "RSA_OAEP", "RSA_OAEP_11"]}
camel-yaml-dsl.json
key-or-trust-store-parameters-ref
Refers to a KeyStore instance to lookup in the registry, which is used for configuration options for creating and loading a KeyStore instance that represents the sender's trustStore or recipient's keyStore.
{"type": "string"}
camel-yaml-dsl.json
key-password
The password to be used for retrieving the private key from the KeyStore. This key is used for asymmetric decryption.
{"type": "string"}
camel-yaml-dsl.json
mgf-algorithm
The MGF Algorithm to use with the RSA OAEP algorithm. The available choices are: EncryptionConstants.MGF1_SHA1 EncryptionConstants.MGF1_SHA256 EncryptionConstants.MGF1_SHA512 The default value is EncryptionConstants.MGF1_SHA1
{"type": "string", "default": "MGF1_SHA1", "enum": ["MGF1_SHA1", "MGF1_SHA256", "MGF1_SHA512"]}
camel-yaml-dsl.json
pass-phrase
A String used as passPhrase to encrypt/decrypt content. The passPhrase has to be provided. The passPhrase needs to be put together in conjunction with the appropriate encryption algorithm. For example using TRIPLEDES the passPhase can be a Only another 24 Byte key
{"type": "string"}
camel-yaml-dsl.json
pass-phrase-byte
A byte used as passPhrase to encrypt/decrypt content. The passPhrase has to be provided. The passPhrase needs to be put together in conjunction with the appropriate encryption algorithm. For example using TRIPLEDES the passPhase can be a Only another 24 Byte key
{"type": "string", "format": "binary"}
camel-yaml-dsl.json
recipient-key-alias
The key alias to be used when retrieving the recipient's public or private key from a KeyStore when performing asymmetric key encryption or decryption.
{"type": "string"}
camel-yaml-dsl.json
secure-tag
The XPath reference to the XML Element selected for encryption/decryption. If no tag is specified, the entire payload is encrypted/decrypted.
{"type": "string"}
camel-yaml-dsl.json
secure-tag-contents
A boolean value to specify whether the XML Element is to be encrypted or the contents of the XML Element. false = Element Level. true = Element Content Level.
{"type": "boolean"}
camel-yaml-dsl.json
xml-cipher-algorithm
The cipher algorithm to be used for encryption/decryption of the XML message content. The available choices are: XMLCipher.TRIPLEDES XMLCipher.AES_128 XMLCipher.AES_128_GCM XMLCipher.AES_192 XMLCipher.AES_192_GCM XMLCipher.AES_256 XMLCipher.AES_256_GCM XMLCipher.SEED_128 XMLCipher.CAMELLIA_128 XMLCipher.CAMELLIA_192 XMLCipher.CAMELLIA_256 The default value is XMLCipher.AES_256_GCM
{"type": "string", "default": "AES-256-GCM", "enum": ["TRIPLEDES", "AES_128", "AES_128_GCM", "AES_192", "AES_192_GCM", "AES_256", "AES_256_GCM", "SEED_128", "CAMELLIA_128", "CAMELLIA_192", "CAMELLIA_256"]}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.YAMLDataFormat
Marshal and unmarshal Java objects to and from YAML.
{"type": "object", "properties": {"allow-any-type": {"type": "boolean"}, "allow-recursive-keys": {"type": "boolean"}, "constructor": {"type": "string"}, "dumper-options": {"type": "string"}, "id": {"type": "string"}, "library": {"type": "string", "default": "SnakeYAML", "enum": ["SnakeYAML"]}, "max-aliases-for-collections": {"type": "number", "default": "50"}, "pretty-flow": {"type": "boolean"}, "representer": {"type": "string"}, "resolver": {"type": "string"}, "type-filter": {"type": "array", "items": {}}, "unmarshal-type": {"type": "string"}, "use-application-context-class-loader": {"type": "boolean"}}}
camel-yaml-dsl.json
allow-any-type
Allow any class to be un-marshaled
{"type": "boolean"}
camel-yaml-dsl.json
allow-recursive-keys
Set whether recursive keys are allowed.
{"type": "boolean"}
camel-yaml-dsl.json
constructor
BaseConstructor to construct incoming documents.
{"type": "string"}
camel-yaml-dsl.json
dumper-options
DumperOptions to configure outgoing objects.
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
library
Which yaml library to use. By default it is SnakeYAML
{"type": "string", "default": "SnakeYAML", "enum": ["SnakeYAML"]}
camel-yaml-dsl.json
max-aliases-for-collections
Set the maximum amount of aliases allowed for collections.
{"type": "number", "default": "50"}
camel-yaml-dsl.json
pretty-flow
Force the emitter to produce a pretty YAML document when using the flow style.
{"type": "boolean"}
camel-yaml-dsl.json
representer
Representer to emit outgoing objects.
{"type": "string"}
camel-yaml-dsl.json
resolver
Resolver to detect implicit type
{"type": "string"}
camel-yaml-dsl.json
type-filter
Set the types SnakeYAML is allowed to un-marshall
{"type": "array", "items": {}}
camel-yaml-dsl.json
unmarshal-type
Class name of the java type to use when unmarshalling
{"type": "string"}