Inventory adjusted (Changelog)

Indicates a change in inventory level

Event
  • 2024-07-11

    New field

    Added new field to schema

    We added the new town property to the schema for downstream consumers.

    // labeled-line-markers.jsx
    {
    "type" : "record",
    "namespace" : "Tutorialspoint",
    "name" : "Employee",
    "fields" : [
    { "name" : "Name" , "type" : "string" },
    { "name" : "Age" , "type" : "int" },
    { "name" : "Town" , "type" : "string" },
    ]
    }
    schema.avro CHANGED
    @@ -3,7 +3,8 @@
    3
      "namespace" : "Tutorialspoint",
    4
      "name" : "Employee",
    5
      "fields" : [
    6
      { "name" : "Name" , "type" : "string" },
    7
    - { "name" : "Age" , "type" : "int" }
     
    8
      ]
    9
      }
     
    3
      "namespace" : "Tutorialspoint",
    4
      "name" : "Employee",
    5
      "fields" : [
    6
      { "name" : "Name" , "type" : "string" },
    7
    + { "name" : "Age" , "type" : "int" },
    8
    + { "name" : "Town" , "type" : "string" },
    9
      ]
    10
      }