From 632dbe4158f0658464ef84112ebe21d00b0e0b22 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Wed, 12 Feb 2020 12:09:30 +0100 Subject: [PATCH] added address claims --- pkg/proto/v0/accounts.proto | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkg/proto/v0/accounts.proto b/pkg/proto/v0/accounts.proto index bc2dc1e0f8..390c8d0c58 100644 --- a/pkg/proto/v0/accounts.proto +++ b/pkg/proto/v0/accounts.proto @@ -45,7 +45,16 @@ message StandardClaims { string phone_number = 17; bool phone_number_verified = 18; int32 updated_at = 19; - // JSON: address -> Message Address {} + Address address = 20; +} + +message Address { + string formatted = 1; + string street_address = 2; + string locality = 3; + string region = 4; + string postal_code = 5; + string country = 6; } message Phoenix {