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.JsonApiDataFormat | Marshal and unmarshal JSON:API resources using JSONAPI-Converter library. | {"type": "object", "properties": {"data-format-types": {"type": "string"}, "id": {"type": "string"}, "main-format-type": {"type": "string"}}} |
camel-yaml-dsl.json | data-format-types | The classes to take into account for the marshalling. Multiple classes can be separated by comma. | {"type": "string"} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | main-format-type | The class to take into account while unmarshalling. | {"type": "string"} |
camel-yaml-dsl.json | org.apache.camel.model.dataformat.JsonDataFormat | Marshal POJOs to JSON and back. | {"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"}, "date-format-pattern": {"type": "string"}, "disable-features": {"type": "string"}, "enable-features": {"type": "string"}, "id": {"type": "string"}, "include": {"type": "string"}, "json-view": {"type": "string"}, "library": {"type": "string", "default": "Jackson", "enum": ["Fastjson", "Gson", "Jackson", "Johnzon", "Jsonb"]}, "module-class-names": {"type": "string"}, "module-refs": {"type": "string"}, "naming-strategy": {"type": "string"}, "object-mapper": {"type": "string"}, "pretty-print": {"type": "boolean"}, "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 look for an objectMapper to use from 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 using 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 | date-format-pattern | To configure the date format while marshall or unmarshall Date fields in JSON using Gson | {"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 | 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 | 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 json library to use. | {"type": "string", "default": "Jackson", "enum": ["Fastjson", "Gson", "Jackson", "Johnzon", "Jsonb"]} |
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 | naming-strategy | If set then Jackson will use the the defined Property Naming Strategy.Possible values are: LOWER_CAMEL_CASE, LOWER_DOT_CASE, LOWER_CASE, KEBAB_CASE, SNAKE_CASE and UPPER_CAMEL_CASE | {"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 | pretty-print | To enable pretty printing output nicely formatted. Is by default false. | {"type": "boolean"} |
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. This option will have no effect on the others Json DataFormat, like gson and fastjson. | {"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.LZFDataFormat | Compress and decompress streams using LZF deflate algorithm. | {"type": "object", "properties": {"id": {"type": "string"}, "using-parallel-compression": {"type": "boolean"}}} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | using-parallel-compression | Enable encoding (compress) using multiple processing cores. | {"type": "boolean"} |
camel-yaml-dsl.json | org.apache.camel.model.dataformat.MimeMultipartDataFormat | Marshal Camel messages with attachments into MIME-Multipart messages and back. | {"type": "object", "properties": {"binary-content": {"type": "boolean"}, "headers-inline": {"type": "boolean"}, "id": {"type": "string"}, "include-headers": {"type": "string"}, "multipart-sub-type": {"type": "string", "default": "mixed"}, "multipart-without-attachment": {"type": "boolean"}}} |
camel-yaml-dsl.json | binary-content | Defines whether the content of binary parts in the MIME multipart is binary (true) or Base-64 encoded (false) Default is false. | {"type": "boolean"} |
camel-yaml-dsl.json | headers-inline | Defines whether the MIME-Multipart headers are part of the message body (true) or are set as Camel headers (false). Default is false. | {"type": "boolean"} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | include-headers | A regex that defines which Camel headers are also included as MIME headers into the MIME multipart. This will only work if headersInline is set to true. Default is to include no headers | {"type": "string"} |
camel-yaml-dsl.json | multipart-sub-type | Specify the subtype of the MIME Multipart. Default is mixed. | {"type": "string", "default": "mixed"} |
camel-yaml-dsl.json | multipart-without-attachment | Defines whether a message without attachment is also marshaled into a MIME Multipart (with only one body part). Default is false. | {"type": "boolean"} |
camel-yaml-dsl.json | org.apache.camel.model.dataformat.PGPDataFormat | Encrypt and decrypt messages using Java Cryptographic Extension (JCE) and PGP. | {"type": "object", "properties": {"algorithm": {"type": "number"}, "armored": {"type": "boolean"}, "compression-algorithm": {"type": "number"}, "hash-algorithm": {"type": "number"}, "id": {"type": "string"}, "integrity": {"type": "boolean"}, "key-file-name": {"type": "string"}, "key-userid": {"type": "string"}, "password": {"type": "string"}, "provider": {"type": "string"}, "signature-key-file-name": {"type": "string"}, "signature-key-ring": {"type": "string"}, "signature-key-userid": {"type": "string"}, "signature-password": {"type": "string"}, "signature-verification-option": {"type": "string"}}} |
camel-yaml-dsl.json | algorithm | Symmetric key encryption algorithm; possible values are defined in org.bouncycastle.bcpg.SymmetricKeyAlgorithmTags; for example 2 (= TRIPLE DES), 3 (= CAST5), 4 (= BLOWFISH), 6 (= DES), 7 (= AES_128). Only relevant for encrypting. | {"type": "number"} |
camel-yaml-dsl.json | armored | This option will cause PGP to base64 encode the encrypted text, making it available for copy/paste, etc. | {"type": "boolean"} |
camel-yaml-dsl.json | compression-algorithm | Compression algorithm; possible values are defined in org.bouncycastle.bcpg.CompressionAlgorithmTags; for example 0 (= UNCOMPRESSED), 1 (= ZIP), 2 (= ZLIB), 3 (= BZIP2). Only relevant for encrypting. | {"type": "number"} |
camel-yaml-dsl.json | hash-algorithm | Signature hash algorithm; possible values are defined in org.bouncycastle.bcpg.HashAlgorithmTags; for example 2 (= SHA1), 8 (= SHA256), 9 (= SHA384), 10 (= SHA512), 11 (=SHA224). Only relevant for signing. | {"type": "number"} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | integrity | Adds an integrity check/sign into the encryption file. The default value is true. | {"type": "boolean"} |
camel-yaml-dsl.json | key-file-name | Filename of the keyring; must be accessible as a classpath resource (but you can specify a location in the file system by using the file: prefix). | {"type": "string"} |
camel-yaml-dsl.json | key-userid | The user ID of the key in the PGP keyring used during encryption. Can also be only a part of a user ID. For example, if the user ID is Test User then you can use the part Test User or to address the user ID. | {"type": "string"} |
camel-yaml-dsl.json | password | Password used when opening the private key (not used for encryption). | {"type": "string"} |
camel-yaml-dsl.json | provider | Java Cryptography Extension (JCE) provider, default is Bouncy Castle (BC). Alternatively you can use, for example, the IAIK JCE provider; in this case the provider must be registered beforehand and the Bouncy Castle provider must not be registered beforehand. The Sun JCE provider does not work. | {"type": "string"} |
camel-yaml-dsl.json | signature-key-file-name | Filename of the keyring to use for signing (during encryption) or for signature verification (during decryption); must be accessible as a classpath resource (but you can specify a location in the file system by using the file: prefix). | {"type": "string"} |
camel-yaml-dsl.json | signature-key-ring | Keyring used for signing/verifying as byte array. You can not set the signatureKeyFileName and signatureKeyRing at the same time. | {"type": "string"} |
camel-yaml-dsl.json | signature-key-userid | User ID of the key in the PGP keyring used for signing (during encryption) or signature verification (during decryption). During the signature verification process the specified User ID restricts the public keys from the public keyring which can be used for the verification. If no User ID is specified for the signature verficiation then any public key in the public keyring can be used for the verification. Can also be only a part of a user ID. For example, if the user ID is Test User then you can use the part Test User or to address the User ID. | {"type": "string"} |
camel-yaml-dsl.json | signature-password | Password used when opening the private key used for signing (during encryption). | {"type": "string"} |
camel-yaml-dsl.json | signature-verification-option | Controls the behavior for verifying the signature during unmarshaling. There are 4 values possible: optional: The PGP message may or may not contain signatures; if it does contain signatures, then a signature verification is executed. required: The PGP message must contain at least one signature; if this is not the case an exception (PGPException) is thrown. A signature verification is executed. ignore: Contained signatures in the PGP message are ignored; no signature verification is executed. no_signature_allowed: The PGP message must not contain a signature; otherwise an exception (PGPException) is thrown. | {"type": "string"} |
camel-yaml-dsl.json | org.apache.camel.model.dataformat.ParquetAvroDataFormat | Parquet Avro serialization and de-serialization. | {"oneOf": [{"type": "string"}, {"type": "object", "properties": {"compression-codec-name": {"type": "string", "default": "GZIP"}, "id": {"type": "string"}, "unmarshal-type": {"type": "string"}}}]} |
camel-yaml-dsl.json | compression-codec-name | Compression codec to use when marshalling. | {"type": "string", "default": "GZIP"} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | unmarshal-type | Class to use when (un)marshalling. If omitted, parquet files are converted into Avro's GenericRecords for unmarshalling and input objects are assumed as GenericRecords for marshalling. | {"type": "string"} |
camel-yaml-dsl.json | org.apache.camel.model.dataformat.ProtobufDataFormat | Serialize and deserialize Java objects using Google's Protocol buffers. | {"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-format": {"type": "string", "default": "native", "enum": ["native", "json"]}, "content-type-header": {"type": "boolean"}, "disable-features": {"type": "string"}, "enable-features": {"type": "string"}, "id": {"type": "string"}, "include": {"type": "string"}, "instance-class": {"type": "string"}, "json-view": {"type": "string"}, "library": {"type": "string", "default": "GoogleProtobuf", "enum": ["GoogleProtobuf", "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-format | Defines a content type format in which protobuf message will be serialized/deserialized from(to) the Java been. The format can either be native or json for either native protobuf or json fields representation. The default value is native. | {"type": "string", "default": "native", "enum": ["native", "json"]} |
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 of class to use when 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 Protobuf library to use. | {"type": "string", "default": "GoogleProtobuf", "enum": ["GoogleProtobuf", "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.RssDataFormat | Transform from ROME SyndFeed Java Objects to XML and vice-versa. | {"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.SoapDataFormat | Marshal Java objects to SOAP messages and back. | {"oneOf": [{"type": "string"}, {"type": "object", "properties": {"context-path": {"type": "string"}, "element-name-strategy-ref": {"type": "string"}, "encoding": {"type": "string"}, "id": {"type": "string"}, "namespace-prefix-ref": {"type": "string"}, "schema": {"type": "string"}, "version": {"type": "string", "default": "1.1", "enum": ["1.1", "1.2"]}}}], "required": ["context-path"]} |
camel-yaml-dsl.json | context-path | Package name where your JAXB classes are located. | {"type": "string"} |
camel-yaml-dsl.json | element-name-strategy-ref | Refers to an element strategy to lookup from the registry. An element name strategy is used for two purposes. The first is to find a xml element name for a given object and soap action when marshaling the object into a SOAP message. The second is to find an Exception class for a given soap fault name. The following three element strategy class name is provided out of the box. QNameStrategy - Uses a fixed qName that is configured on instantiation. Exception lookup is not supported TypeNameStrategy - Uses the name and namespace from the XMLType annotation of the given type. If no namespace is set then package-info is used. Exception lookup is not supported ServiceInterfaceStrategy - Uses information from a webservice interface to determine the type name and to find the exception class for a SOAP fault All three classes is located in the package name org.apache.camel.dataformat.soap.name If you have generated the web service stub code with cxf-codegen or a similar tool then you probably will want to use the ServiceInterfaceStrategy. In the case you have no annotated service interface you should use QNameStrategy or TypeNameStrategy. | {"type": "string"} |
camel-yaml-dsl.json | encoding | To overrule and use a specific encoding | {"type": "string"} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | namespace-prefix-ref | When marshalling using JAXB or SOAP then the JAXB implementation will automatic assign namespace prefixes, such as ns2, ns3, ns4 etc. To control this mapping, Camel allows you to refer to a map which contains the desired mapping. | {"type": "string"} |
camel-yaml-dsl.json | schema | To validate against an existing schema. Your can use the prefix classpath:, file: or http: to specify how the resource should be resolved. You can separate multiple schema files by using the ',' character. | {"type": "string"} |
camel-yaml-dsl.json | version | SOAP version should either be 1.1 or 1.2. Is by default 1.1 | {"type": "string", "default": "1.1", "enum": ["1.1", "1.2"]} |
camel-yaml-dsl.json | org.apache.camel.model.dataformat.SwiftMtDataFormat | Encode and decode SWIFT MT messages. | {"oneOf": [{"type": "string"}, {"type": "object", "properties": {"id": {"type": "string"}, "write-in-json": {"type": "boolean"}}}]} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | write-in-json | The flag indicating that messages must be marshalled in a JSON format. | {"type": "boolean"} |
camel-yaml-dsl.json | org.apache.camel.model.dataformat.SwiftMxDataFormat | Encode and decode SWIFT MX messages. | {"type": "object", "properties": {"id": {"type": "string"}, "read-config-ref": {"type": "string"}, "read-message-id": {"type": "string"}, "write-config-ref": {"type": "string"}, "write-in-json": {"type": "boolean"}}} |
camel-yaml-dsl.json | id | The id of this node | {"type": "string"} |
camel-yaml-dsl.json | read-config-ref | Refers to a specific configuration to use when unmarshalling an input stream to lookup from the registry. | {"type": "string"} |
camel-yaml-dsl.json | read-message-id | The type of MX message to produce when unmarshalling an input stream. If not set, it will be automatically detected from the namespace used. | {"type": "string"} |
camel-yaml-dsl.json | write-config-ref | Refers to a specific configuration to use when marshalling a message to lookup from the registry. | {"type": "string"} |
camel-yaml-dsl.json | write-in-json | The flag indicating that messages must be marshalled in a JSON format. | {"type": "boolean"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.