# Operations (sample payloads)

## Main operations

### Decode XML

**Sample Input**

```json
{
    "xml": "<book>\n  <title>The Great Gatsby</title>\n  <author>F. Scott Fitzgerald</author>\n  <year>1925</year>\n  <genre>Novel</genre>\n</book>"
}
```

**Sample Output**

```json
{
    "result": {
        "book": \{
            "title": "The Great Gatsby",
            "author": "F. Scott Fitzgerald",
            "year": "1925",
            "genre": "Novel"
        \}
    }
}
```
