Schema reference
type: boolean
boolean{
prop: "isDark",
type: "boolean",
defaultValue: true // optional
}type: select
select{
prop: "animal",
type: "select",
options: ["dog", "cat", "elephant"],
defaultValue: "cat" // optional
}{
prop: "animal",
type: "select",
options: [
{ value: "dog", label: "Dog" },
{ value: "cat", label: "Cat" },
{ value: "elephant", label: "Elephant" }
]
}type: text
texttype: string
stringtype: resource
resourceLast updated