Supported Schema Types
json-Sample | ||
|---|---|---|
Multi-line text | "schema": {
"type": "longstring"
} | |
Single-line text | "schema": {
"type": "string"
} | |
Number | "schema": {
"type": "number"
} | |
Date | "schema": {
"type": "date"
} | |
Select List | "schema": {
"type": "select"
},
"allowedValues": [
{
"name": "High"
},
{
"name": "Medium"
},
{
"name": "Low"
}
] | |
User | "schema": {
"type": "user"
} | |
Group | "schema": {
"type": "group"
} | |
Phone/Telephone | "schema": {
"type": "tel"
} | |
Email | "schema": {
"type": "email"
} |