Supported Schema Types




json-Sample
Multi-line text
(since 4.1)

"schema": {
    "type": "longstring"
}

Single-line text
(since 4.1)

"schema": {
    "type": "string"
}

Number
(since 4.1)

"schema": {
    "type": "number"
}
Date
(since 4.1)
"schema": {
    "type": "date"
}

Select List
(since 4.1)

"schema": {
       "type": "select"
},
"allowedValues": [
       {
        "name": "High"
       },
       {
        "name": "Medium"
       },
       {
        "name": "Low"
       }
]
User
(since 4.2)

"schema": {
    "type": "user"
}
Group
(since 4.2)

"schema": {
    "type": "group"
}
Phone/Telephone
(since 4.4)

"schema": {
    "type": "tel"
}
Email
(since 4.4)

"schema": {
    "type": "email"
}