Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/orders.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ owner: chadgable@gable.ai
schema:
- name: order_id
doc: The ID of the order the item is associated with
type: int32
type: string
- name: user_id
doc: The ID of the user that placed the order
type: int32
Expand Down
2 changes: 1 addition & 1 deletion event_schemas/OrderCreated.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package tutorial;
import "google/protobuf/timestamp.proto";

message OrderCreated {
required string order_id = 1;
required float order_id = 1;
required string user_id = 2;
required float total_amount = 3;
required google.protobuf.Timestamp created_at = 4;
Expand Down