schema
stringclasses
471 values
key
stringlengths
0
203
description
stringlengths
0
4.37k
object
stringlengths
2
322k
camel-yaml-dsl.json
dont-encode-elements
If provided, specifies the elements which should NOT be encoded. Multiple elements can be separated by comma when using String parameter. Valid values for this field would include: Patient - Don't encode patient and all its children Patient.name - Don't encode the patient's name Patient.name.family - Don't encode the patient's family name .text - Don't encode the text element on any resource (only the very first position may contain a wildcard) DSTU2 note: Note that values including meta, such as Patient.meta will work for DSTU2 parsers, but values with subelements on meta such as Patient.meta.lastUpdated will only work in DSTU3 mode.
{"type": "string"}
camel-yaml-dsl.json
dont-strip-versions-from-references-at-paths
If supplied value(s), any resource references at the specified paths will have their resource versions encoded instead of being automatically stripped during the encoding process. This setting has no effect on the parsing process. Multiple elements can be separated by comma when using String parameter. This method provides a finer-grained level of control than setStripVersionsFromReferences(String) and any paths specified by this method will be encoded even if setStripVersionsFromReferences(String) has been set to true (which is the default)
{"type": "string"}
camel-yaml-dsl.json
encode-elements
If provided, specifies the elements which should be encoded, to the exclusion of all others. Multiple elements can be separated by comma when using String parameter. Valid values for this field would include: Patient - Encode patient and all its children Patient.name - Encode only the patient's name Patient.name.family - Encode only the patient's family name .text - Encode the text element on any resource (only the very first position may contain a wildcard) .(mandatory) - This is a special case which causes any mandatory fields (min 0) to be encoded
{"type": "string"}
camel-yaml-dsl.json
encode-elements-applies-to-child-resources-only
If set to true (default is false), the values supplied to setEncodeElements(Set) will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e. search result resources in that bundle)
{"type": "boolean"}
camel-yaml-dsl.json
fhir-context
To use a custom fhir context. Reference to object of type ca.uhn.fhir.context.FhirContext
{"type": "string"}
camel-yaml-dsl.json
fhir-version
The version of FHIR to use. Possible values are: DSTU2,DSTU2_HL7ORG,DSTU2_1,DSTU3,R4,R5
{"type": "string", "default": "R4", "enum": ["DSTU2", "DSTU2_HL7ORG", "DSTU2_1", "DSTU3", "R4", "R5"]}
camel-yaml-dsl.json
force-resource-id
When encoding, force this resource ID to be encoded as the resource ID. Reference to object of type org.hl7.fhir.instance.model.api.IIdType
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
omit-resource-id
If set to true (default is false) the ID of any resources being encoded will not be included in the output. Note that this does not apply to contained resources, only to root resources. In other words, if this is set to true, contained resources will still have local IDs but the outer/containing ID will not have an ID.
{"type": "boolean"}
camel-yaml-dsl.json
override-resource-id-with-bundle-entry-full-url
If set to true (which is the default), the Bundle.entry.fullUrl will override the Bundle.entry.resource's resource id if the fullUrl is defined. This behavior happens when parsing the source data into a Bundle object. Set this to false if this is not the desired behavior (e.g. the client code wishes to perform additional validation checks between the fullUrl and the resource id).
{"type": "boolean"}
camel-yaml-dsl.json
parser-error-handler
Registers an error handler which will be invoked when any parse errors are found. Reference to object of type ca.uhn.fhir.parser.IParserErrorHandler
{"type": "string"}
camel-yaml-dsl.json
parser-options
Sets the parser options object which will be used to supply default options to newly created parsers. Reference to object of type ca.uhn.fhir.context.ParserOptions.
{"type": "string"}
camel-yaml-dsl.json
prefer-types
If set (FQN class names), when parsing resources the parser will try to use the given types when possible, in the order that they are provided (from highest to lowest priority). For example, if a custom type which declares to implement the Patient resource is passed in here, and the parser is parsing a Bundle containing a Patient resource, the parser will use the given custom type. Multiple class names can be separated by comma.
{"type": "string"}
camel-yaml-dsl.json
pretty-print
Sets the pretty print flag, meaning that the parser will encode resources with human-readable spacing and newlines between elements instead of condensing output as much as possible.
{"type": "boolean"}
camel-yaml-dsl.json
server-base-url
Sets the server's base URL used by this parser. If a value is set, resource references will be turned into relative references if they are provided as absolute URLs but have a base matching the given base.
{"type": "string"}
camel-yaml-dsl.json
strip-versions-from-references
If set to true (which is the default), resource references containing a version will have the version removed when the resource is encoded. This is generally good behaviour because in most situations, references from one resource to another should be to the resource by ID, not by ID and version. In some cases though, it may be desirable to preserve the version in resource links. In that case, this value should be set to false. This method provides the ability to globally disable reference encoding. If finer-grained control is needed, use setDontStripVersionsFromReferencesAtPaths(List)
{"type": "boolean"}
camel-yaml-dsl.json
summary-mode
If set to true (default is false) only elements marked by the FHIR specification as being summary elements will be included.
{"type": "boolean"}
camel-yaml-dsl.json
suppress-narratives
If set to true (default is false), narratives will not be included in the encoded values.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.FhirXmlDataFormat
Marshall and unmarshall FHIR objects to/from XML.
{"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"}
camel-yaml-dsl.json
dont-encode-elements
If provided, specifies the elements which should NOT be encoded. Multiple elements can be separated by comma when using String parameter. Valid values for this field would include: Patient - Don't encode patient and all its children Patient.name - Don't encode the patient's name Patient.name.family - Don't encode the patient's family name .text - Don't encode the text element on any resource (only the very first position may contain a wildcard) DSTU2 note: Note that values including meta, such as Patient.meta will work for DSTU2 parsers, but values with subelements on meta such as Patient.meta.lastUpdated will only work in DSTU3 mode.
{"type": "string"}
camel-yaml-dsl.json
dont-strip-versions-from-references-at-paths
If supplied value(s), any resource references at the specified paths will have their resource versions encoded instead of being automatically stripped during the encoding process. This setting has no effect on the parsing process. Multiple elements can be separated by comma when using String parameter. This method provides a finer-grained level of control than setStripVersionsFromReferences(String) and any paths specified by this method will be encoded even if setStripVersionsFromReferences(String) has been set to true (which is the default)
{"type": "string"}
camel-yaml-dsl.json
encode-elements
If provided, specifies the elements which should be encoded, to the exclusion of all others. Multiple elements can be separated by comma when using String parameter. Valid values for this field would include: Patient - Encode patient and all its children Patient.name - Encode only the patient's name Patient.name.family - Encode only the patient's family name .text - Encode the text element on any resource (only the very first position may contain a wildcard) .(mandatory) - This is a special case which causes any mandatory fields (min 0) to be encoded
{"type": "string"}
camel-yaml-dsl.json
encode-elements-applies-to-child-resources-only
If set to true (default is false), the values supplied to setEncodeElements(Set) will not be applied to the root resource (typically a Bundle), but will be applied to any sub-resources contained within it (i.e. search result resources in that bundle)
{"type": "boolean"}
camel-yaml-dsl.json
fhir-context
To use a custom fhir context. Reference to object of type ca.uhn.fhir.context.FhirContext
{"type": "string"}
camel-yaml-dsl.json
fhir-version
The version of FHIR to use. Possible values are: DSTU2,DSTU2_HL7ORG,DSTU2_1,DSTU3,R4,R5
{"type": "string", "default": "R4", "enum": ["DSTU2", "DSTU2_HL7ORG", "DSTU2_1", "DSTU3", "R4", "R5"]}
camel-yaml-dsl.json
force-resource-id
When encoding, force this resource ID to be encoded as the resource ID. Reference to object of type org.hl7.fhir.instance.model.api.IIdType
{"type": "string"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
omit-resource-id
If set to true (default is false) the ID of any resources being encoded will not be included in the output. Note that this does not apply to contained resources, only to root resources. In other words, if this is set to true, contained resources will still have local IDs but the outer/containing ID will not have an ID.
{"type": "boolean"}
camel-yaml-dsl.json
override-resource-id-with-bundle-entry-full-url
If set to true (which is the default), the Bundle.entry.fullUrl will override the Bundle.entry.resource's resource id if the fullUrl is defined. This behavior happens when parsing the source data into a Bundle object. Set this to false if this is not the desired behavior (e.g. the client code wishes to perform additional validation checks between the fullUrl and the resource id).
{"type": "boolean"}
camel-yaml-dsl.json
parser-error-handler
Registers an error handler which will be invoked when any parse errors are found. Reference to object of type ca.uhn.fhir.parser.IParserErrorHandler
{"type": "string"}
camel-yaml-dsl.json
parser-options
Sets the parser options object which will be used to supply default options to newly created parsers. Reference to object of type ca.uhn.fhir.context.ParserOptions.
{"type": "string"}
camel-yaml-dsl.json
prefer-types
If set (FQN class names), when parsing resources the parser will try to use the given types when possible, in the order that they are provided (from highest to lowest priority). For example, if a custom type which declares to implement the Patient resource is passed in here, and the parser is parsing a Bundle containing a Patient resource, the parser will use the given custom type. Multiple class names can be separated by comma.
{"type": "string"}
camel-yaml-dsl.json
pretty-print
Sets the pretty print flag, meaning that the parser will encode resources with human-readable spacing and newlines between elements instead of condensing output as much as possible.
{"type": "boolean"}
camel-yaml-dsl.json
server-base-url
Sets the server's base URL used by this parser. If a value is set, resource references will be turned into relative references if they are provided as absolute URLs but have a base matching the given base.
{"type": "string"}
camel-yaml-dsl.json
strip-versions-from-references
If set to true (which is the default), resource references containing a version will have the version removed when the resource is encoded. This is generally good behaviour because in most situations, references from one resource to another should be to the resource by ID, not by ID and version. In some cases though, it may be desirable to preserve the version in resource links. In that case, this value should be set to false. This method provides the ability to globally disable reference encoding. If finer-grained control is needed, use setDontStripVersionsFromReferencesAtPaths(List)
{"type": "boolean"}
camel-yaml-dsl.json
summary-mode
If set to true (default is false) only elements marked by the FHIR specification as being summary elements will be included.
{"type": "boolean"}
camel-yaml-dsl.json
suppress-narratives
If set to true (default is false), narratives will not be included in the encoded values.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.FlatpackDataFormat
Marshal and unmarshal Java lists and maps to/from flat files (such as CSV, delimited, or fixed length formats) using Flatpack library.
{"type": "object", "properties": {"allow-short-lines": {"type": "boolean"}, "definition": {"type": "string"}, "delimiter": {"type": "string", "default": ","}, "fixed": {"type": "boolean"}, "id": {"type": "string"}, "ignore-extra-columns": {"type": "boolean"}, "ignore-first-record": {"type": "boolean"}, "parser-factory-ref": {"type": "string"}, "text-qualifier": {"type": "string"}}}
camel-yaml-dsl.json
allow-short-lines
Allows for lines to be shorter than expected and ignores the extra characters
{"type": "boolean"}
camel-yaml-dsl.json
definition
The flatpack pzmap configuration file. Can be omitted in simpler situations, but its preferred to use the pzmap.
{"type": "string"}
camel-yaml-dsl.json
delimiter
The delimiter char (could be ; , or similar)
{"type": "string", "default": ","}
camel-yaml-dsl.json
fixed
Delimited or fixed. Is by default false = delimited
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
ignore-extra-columns
Allows for lines to be longer than expected and ignores the extra characters.
{"type": "boolean"}
camel-yaml-dsl.json
ignore-first-record
Whether the first line is ignored for delimited files (for the column headers). Is by default true.
{"type": "boolean"}
camel-yaml-dsl.json
parser-factory-ref
References to a custom parser factory to lookup in the registry
{"type": "string"}
camel-yaml-dsl.json
text-qualifier
If the text is qualified with a character. Uses quote character by default.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.GrokDataFormat
Unmarshal unstructured data to objects using Logstash based Grok patterns.
{"type": "object", "properties": {"allow-multiple-matches-per-line": {"type": "boolean"}, "flattened": {"type": "boolean"}, "id": {"type": "string"}, "named-only": {"type": "boolean"}, "pattern": {"type": "string"}}, "required": ["pattern"]}
camel-yaml-dsl.json
allow-multiple-matches-per-line
If false, every line of input is matched for pattern only once. Otherwise the line can be scanned multiple times when non-terminal pattern is used.
{"type": "boolean"}
camel-yaml-dsl.json
flattened
Turns on flattened mode. In flattened mode the exception is thrown when there are multiple pattern matches with same key.
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
named-only
Whether to capture named expressions only or not (i.e. %{IP:ip} but not ${IP})
{"type": "boolean"}
camel-yaml-dsl.json
pattern
The grok pattern to match lines of input
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.GzipDeflaterDataFormat
Compress and decompress messages using java.util.zip.GZIPStream.
{"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.HL7DataFormat
Marshal and unmarshal HL7 (Health Care) model objects using the HL7 MLLP codec.
{"type": "object", "properties": {"id": {"type": "string"}, "validate": {"type": "boolean"}}}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
validate
Whether to validate the HL7 message Is by default true.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.IcalDataFormat
Marshal and unmarshal iCal (.ics) documents to/from model objects.
{"type": "object", "properties": {"id": {"type": "string"}, "validating": {"type": "boolean"}}}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
validating
Whether to validate.
{"type": "boolean"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.JacksonXMLDataFormat
Unmarshal an XML payloads to POJOs and back using XMLMapper extension of Jackson.
{"type": "object", "properties": {"allow-jms-type": {"type": "boolean"}, "allow-unmarshall-type": {"type": "boolean"}, "collection-type": {"type": "string"}, "content-type-header": {"type": "boolean"}, "disable-features": {"type": "string"}, "enable-features": {"type": "string"}, "enable-jaxb-annotation-module": {"type": "boolean"}, "id": {"type": "string"}, "include": {"type": "string"}, "json-view": {"type": "string"}, "module-class-names": {"type": "string"}, "module-refs": {"type": "string"}, "pretty-print": {"type": "boolean"}, "timezone": {"type": "string"}, "unmarshal-type": {"type": "string"}, "use-list": {"type": "boolean"}, "xml-mapper": {"type": "string"}}}
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
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
enable-jaxb-annotation-module
Whether to enable the JAXB annotations module when using jackson. When enabled then JAXB annotations can be used by Jackson.
{"type": "boolean"}
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
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
pretty-print
To enable pretty printing output nicely formatted. Is by default false.
{"type": "boolean"}
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-list
To unmarshal to a List of Map or a List of Pojo.
{"type": "boolean"}
camel-yaml-dsl.json
xml-mapper
Lookup and use the existing XmlMapper with the given id.
{"type": "string"}
camel-yaml-dsl.json
org.apache.camel.model.dataformat.JaxbDataFormat
Unmarshal XML payloads to POJOs and back using JAXB2 XML marshalling standard.
{"type": "object", "properties": {"access-external-schema-protocols": {"type": "string", "default": "false"}, "content-type-header": {"type": "boolean"}, "context-path": {"type": "string"}, "context-path-is-class-name": {"type": "boolean"}, "encoding": {"type": "string"}, "filter-non-xml-chars": {"type": "boolean"}, "fragment": {"type": "boolean"}, "id": {"type": "string"}, "ignore-jaxb-element": {"type": "boolean"}, "jaxb-provider-properties": {"type": "string"}, "must-be-jaxb-element": {"type": "boolean"}, "namespace-prefix-ref": {"type": "string"}, "no-namespace-schema-location": {"type": "string"}, "object-factory": {"type": "boolean"}, "part-class": {"type": "string"}, "part-namespace": {"type": "string"}, "pretty-print": {"type": "boolean"}, "schema": {"type": "string"}, "schema-location": {"type": "string"}, "schema-severity-level": {"type": "string", "default": "0", "enum": ["0", "1", "2"]}, "xml-stream-writer-wrapper": {"type": "string"}}, "required": ["context-path"]}
camel-yaml-dsl.json
access-external-schema-protocols
Only in use if schema validation has been enabled. Restrict access to the protocols specified for external reference set by the schemaLocation attribute, Import and Include element. Examples of protocols are file, http, jar:file. false or none to deny all access to external references; a specific protocol, such as file, to give permission to only the protocol; the keyword all to grant permission to all protocols.
{"type": "string", "default": "false"}
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
context-path
Package name where your JAXB classes are located.
{"type": "string"}
camel-yaml-dsl.json
context-path-is-class-name
This can be set to true to mark that the contextPath is referring to a classname and not a package name.
{"type": "boolean"}
camel-yaml-dsl.json
encoding
To overrule and use a specific encoding
{"type": "string"}
camel-yaml-dsl.json
filter-non-xml-chars
To ignore non xml characheters and replace them with an empty space.
{"type": "boolean"}
camel-yaml-dsl.json
fragment
To turn on marshalling XML fragment trees. By default JAXB looks for XmlRootElement annotation on given class to operate on whole XML tree. This is useful but not always - sometimes generated code does not have XmlRootElement annotation, sometimes you need unmarshall only part of tree. In that case you can use partial unmarshalling. To enable this behaviours you need set property partClass. Camel will pass this class to JAXB's unmarshaler.
{"type": "boolean"}
camel-yaml-dsl.json
id
The id of this node
{"type": "string"}
camel-yaml-dsl.json
jaxb-provider-properties
Refers to a custom java.util.Map to lookup in the registry containing custom JAXB provider properties to be used with the JAXB marshaller.
{"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
no-namespace-schema-location
To define the location of the namespaceless schema
{"type": "string"}
camel-yaml-dsl.json
object-factory
Whether to allow using ObjectFactory classes to create the POJO classes during marshalling. This only applies to POJO classes that has not been annotated with JAXB and providing jaxb.index descriptor files.
{"type": "boolean"}
camel-yaml-dsl.json
part-class
Name of class used for fragment parsing. See more details at the fragment option.
{"type": "string"}
camel-yaml-dsl.json
part-namespace
XML namespace to use for fragment parsing. See more details at the fragment option.
{"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
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
schema-location
To define the location of the schema
{"type": "string"}
camel-yaml-dsl.json
schema-severity-level
Sets the schema severity level to use when validating against a schema. This level determines the minimum severity error that triggers JAXB to stop continue parsing. The default value of 0 (warning) means that any error (warning, error or fatal error) will trigger JAXB to stop. There are the following three levels: 0=warning, 1=error, 2=fatal error.
{"type": "string", "default": "0", "enum": ["0", "1", "2"]}
camel-yaml-dsl.json
xml-stream-writer-wrapper
To use a custom xml stream writer.
{"type": "string"}