Skip to content
Closed
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
3 changes: 3 additions & 0 deletions schema/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ type Table struct {
Title string `json:"title"`
// table description
Description string `json:"description"`
// AdditionalDescription is an optional field that can be used to provide more context after the basic preamble and
// permissions information.
AdditionalDescription string `json:"additionalDescription"`
// List of permissions needed to access this table, if any. For example ["Microsoft.Network/dnsZones/read"] or ["storage.buckets.list"]
PermissionsNeeded []string `json:"permissions_needed"`
// List of columns that may contain sensitive or secret data
Expand Down
Loading