Claim Created (Changelog)

A claim has been created by user

Event
  • 2024-08-01 (latest)

    ⭐️ JSON Schema

    Added support for JSON Schema

    InventoryAdjusted uses Avro but now also supports JSON Draft 7.

    Employee JSON Draft
    // labeled-line-markers.jsx
    {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Employee",
    "properties": {
    "Name": {
    "type": "string"
    },
    "Age": {
    "type": "integer"
    },
    "Town": {
    "type": "string"
    }
    },
    "required": ["Name", "Age", "Town"]
    }
    ``