Skip to content

Commit

Permalink
New Field Introduction for further uses
Browse files Browse the repository at this point in the history
  • Loading branch information
ashbeelghouri committed Jul 1, 2024
1 parent d18090b commit afcf322
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions data/v0/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ type Schema struct {

type Field struct {
DependsOn []string `json:"depends_on"`
DisplayName string `json:"display_name"`
Name string `json:"name"`
Type string `json:"type"`
IsRequired bool `json:"required"`
Expand Down
1 change: 1 addition & 0 deletions data/v1/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ type Schema struct {

type Field struct {
DependsOn []string `json:"depends_on"`
DisplayName string `json:"display_name"`
Name string `json:"name"`
TargetKey string `json:"target_key"`
Type string `json:"type"`
Expand Down
1 change: 1 addition & 0 deletions data/v2/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ type Schema struct {

type Field struct {
DependsOn []string `json:"depends_on"`
DisplayName string `json:"display_name"`
Name string `json:"name"`
TargetKey string `json:"target_key"`
Type string `json:"type"`
Expand Down

0 comments on commit afcf322

Please sign in to comment.