mirror of https://github.com/databricks/cli.git
14 lines
501 B
Go
14 lines
501 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"`
|
|
DeprecationMessage string `json:"deprecation_message,omitempty"`
|
|
}
|
|
|
|
const Placeholder = "PLACEHOLDER"
|