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
    {
    0
      "type" : "record",
    1
      "namespace" : "Tutorialspoint",
    2
      "name" : "Employee",
    3
      "fields" : [
    4
      { "name" : "Name" , "type" : "string" },
     
     
     
     
     
    5
      { "name" : "Age" , "type" : "int" }
    6
      ]
    7
      }
     
    0
      "type" : "record",
    1
      "namespace" : "Tutorialspoint",
    2
      "name" : "Employee",
    3
      "fields" : [
    4
      { "name" : "Name" , "type" : "string" },
    5
    + { "name" : "Age" , "type" : "int" },
    6
    + { "name" : "Age" , "type" : "int" },
    7
    + { "name" : "Age" , "type" : "int" },
    8
    + { "name" : "Age" , "type" : "int" },
    9
    + { "name" : "Age" , "type" : "int" },
    10
      { "name" : "Age" , "type" : "int" }
    11
      ]
    12
      }