Skip to content

Commit

Permalink
feat: updated entity schema in default context schema
Browse files Browse the repository at this point in the history
  • Loading branch information
tomer-shvadron committed Nov 15, 2024
1 parent 40ff2bc commit f595dd5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export const EntitySchema = Type.Object(
isContactPerson: Type.Optional(Type.Boolean()),
correlationId: Type.Optional(Type.Union([Type.String(), Type.Null()])),
endUserType: Type.Optional(Type.Union([Type.String(), Type.Null()])),
firstName: Type.String(),
lastName: Type.String(),
firstName: Type.Optional(Type.String()),
lastName: Type.Optional(Type.String()),
email: Type.Optional(Type.Union([Type.String(), Type.Null()])),
phone: Type.Optional(Type.Union([Type.String(), Type.Null()])),
country: Type.Optional(
Expand Down

0 comments on commit f595dd5

Please sign in to comment.