mirror of https://github.com/databricks/cli.git
13 lines
434 B
Go
13 lines
434 B
Go
|
package annotation
|
||
|
|
||
|
type Descriptor struct {
|
||
|
Description string `json:"description,omitempty"`
|
||
|
MarkdownDescription string `json:"markdown_description,omitempty"`
|
||
|
Title string `json:"title,omitempty"`
|
||
|
Default any `json:"default,omitempty"`
|
||
|
Enum []any `json:"enum,omitempty"`
|
||
|
MarkdownExamples string `json:"markdown_examples,omitempty"`
|
||
|
}
|
||
|
|
||
|
const Placeholder = "PLACEHOLDER"
|