 Avro Serialize Action
 Avro Serialize Action
 Provided by: "Apache Software Foundation"
Support Level for this Kamelet is: "Stable"
Serialize payload to Avro
Configuration Options
The following table summarizes the configuration options available for the avro-serialize-action Kamelet:
| Property | Name | Description | Type | Default | Example | 
|---|---|---|---|---|---|
| Schema | The Avro schema to use during serialization (as single-line, using JSON format). | string | {"type": "record", "namespace": "com.example", "name": "FullName", "fields": [{"name": "first", "type": "string"},{"name": "last", "type": "string"}]} | ||
| Validate | Indicates if the content must be validated against the schema. | boolean | true | 
Dependencies
At runtime, the avro-serialize-action Kamelet relies upon the presence of the following dependencies:
-  camel:kamelet 
-  camel:core 
-  camel:jackson-avro 
Camel JBang usage
Prerequisites
-  You’ve installed JBang. 
-  You have executed the following command: 
jbang app install camel@apache/camelSupposing you have a file named route.yaml with this content:
- route:
    from:
      uri: "kamelet:timer-source"
      parameters:
        period: 10000
        message: 'test'
      steps:
        - to:
            uri: "kamelet:avro-serialize-action"
            parameters:
            .
            .
            .
        - to:
            uri: "kamelet:log-sink"You can now run it directly through the following command
camel run route.yaml