diff --git a/_includes/tutorials/console-consumer-producer-avro/confluent/code/orders-avro-schema.json b/_includes/tutorials/console-consumer-producer-avro/confluent/code/orders-avro-schema.json index c982bfcfa3..57b3f80543 100644 --- a/_includes/tutorials/console-consumer-producer-avro/confluent/code/orders-avro-schema.json +++ b/_includes/tutorials/console-consumer-producer-avro/confluent/code/orders-avro-schema.json @@ -1,14 +1,14 @@ { -"type": "record", -"namespace": "io.confluent.tutorial", -"name": "OrderDetail", -"fields": [ - {"name": "number", "type": "long", "doc": "The order number."}, - {"name": "date", "type": "long", "logicalType": "date", "doc": "The date the order was submitted."}, - {"name": "shipping_address", "type": "string", "doc": "The shipping address."}, - {"name": "subtotal", "type": "double", "doc": "The amount without shipping cost and tax."}, - {"name": "shipping_cost", "type": "double", "doc": "The shipping cost."}, - {"name": "tax", "type": "double", "doc": "The applicable tax."}, - {"name": "grand_total", "type": "double", "doc": "The order grand total ."} + "type": "record", + "namespace": "io.confluent.tutorial", + "name": "OrderDetail", + "fields": [ + {"name": "number", "type": "long", "doc": "The order number."}, + {"name": "date", "type": "long", "logicalType": "date", "doc": "The date the order was submitted."}, + {"name": "shipping_address", "type": "string", "doc": "The shipping address."}, + {"name": "subtotal", "type": "double", "doc": "The amount without shipping cost and tax."}, + {"name": "shipping_cost", "type": "double", "doc": "The shipping cost."}, + {"name": "tax", "type": "double", "doc": "The applicable tax."}, + {"name": "grand_total", "type": "double", "doc": "The order grand total."} ] }