# Serialisers

## Overview

Incoming and outgoing data requires mapping to appropriate formats to support **seamless processing and distribution** within Joule. **Serialisers facilitate this process** by efficiently translating between source and target data types.

> In computing, serialization (or serialisation) is the process of translating a data structure or object state into a format that can be stored (e.g. files in secondary storage devices, data buffers in primary storage devices) or transmitted (e.g. data streams over computer networks) and reconstructed later (possibly in a different computer environment).
>
> [*wikipedia*](https://en.wikipedia.org/wiki/Serialization)

Joule processes incoming data by converting it from the source format into a `StreamEvent`.

`StreamEvents` can be **transformed back** into domain-specific data types, making them ready for consumption by other systems.&#x20;

### Supported tools

1. <mark style="color:green;">**Developer SDK**</mark>\
   Ability to write, deploy and reuse custom domain parsers and transformers.
2. <mark style="color:green;">**AVRO support**</mark>\
   Support to read and write domain-specific data types.
3. <mark style="color:green;">**Native StreamEvent**</mark>\
   Binary and JSON `StreamEvent` interoperability support between Joule processes.

## Available serialising options

<table data-card-size="large" data-view="cards"><thead><tr><th></th><th></th><th></th><th data-hidden></th><th data-hidden data-card-cover data-type="files"></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-type="rating" data-max="5"></th></tr></thead><tbody><tr><td><mark style="color:orange;"><strong>Serialisation</strong></mark></td><td>Data emitted to downstream systems is serialised using provided or custom serialisers</td><td></td><td></td><td></td><td><a href="/pages/miyhMElxCDdwYCoBYMz6">/pages/miyhMElxCDdwYCoBYMz6</a></td><td>null</td></tr><tr><td><mark style="color:orange;"><strong>Deserialisation</strong></mark></td><td>Consumed data is mapped to internal <code>StreamEvents</code> using provided or custom deserialisers</td><td></td><td></td><td></td><td><a href="/pages/OJh0w8XOX2w5Nm4qQHSh">/pages/OJh0w8XOX2w5Nm4qQHSh</a></td><td>null</td></tr></tbody></table>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.fractalworks.io/joule/components/connectors/serialisers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
