セルフサービス フォーム
RealmJoin Self Service Forms は、Support により有効化されると、インシデント報告や変更要求など、ユーザーから構造化データを収集します。
最終更新
役に立ちましたか?
役に立ちましたか?
{
"title": "人物",
"type": "object",
"required": [
"name",
"date",
"location",
"pets"
],
"properties": {
"name": {
"type": "string",
"description": "姓と名",
"minLength": 4,
"default": "- ここに名前を入力 -"
},
"date": {
"type": "string",
"format": "date",
"options": {
"flatpickr": {}
}
},
"location": {
"type": "object",
"title": "所在地",
"properties": {
"city": {
"type": "string",
"default": "サンフランシスコ"
},
"state": {
"type": "string",
"default": "CA"
},
"citystate": {
"type": "string",
"description": "これは前の 2 つのフィールドから自動的に生成されます",
"template": "{{city}}, {{state}}",
"watch": {
"city": "location.city",
"state": "location.state"
}
}
}
},
"pets": {
"type": "array",
"format": "table",
"title": "ペット",
"uniqueItems": true,
"items": {
"type": "object",
"title": "ペット",
"properties": {
"type": {
"type": "string",
"enum": [
"猫",
"犬",
"鳥",
"爬虫類",
"その他"
],
"default": "犬"
},
"name": {
"type": "string"
}
}
},
"default": [
{
"type": "犬",
"name": "Walter"
}
]
}
}
}