Summary
Preserve incoming form data format
Description
Find and revert containers object/array mutation
Route
POST /formbuilder/preserveFormData
Roles
admin
apiread
operator
Parameters
DetailsExampleSchema
Name |
Type |
Required |
Description |
form_name |
string |
yes |
Form name |
data |
object |
yes |
Form output data to convert |
Copied to Clipboard
{
"form_name": "Form 123",
"data": {
"name": "Form 123",
"children": [
{
"type": "field",
"name": "ipaddress",
"properties": {
"type": "string",
"prefix": ""
},
"description": "IP address",
"element": "{\"type\":\"method\",\"id\":{\"name\":\"method_name_1\"}}",
"source_type": "method",
"source": "method_name_1",
"id": "a40044c2-f378-4b2b-a81a-41d78979e583",
"yangkey": "",
"key": "method_name_1.ipAddress"
}
],
"elements": [
{
"type": "method",
"id": {
"name": "method_name_1"
}
}
],
"_id": "846f756b-b1a6-3b69-264e-d161d8a3092c",
"groups": [
"5884c1077ca53efb99ce6753",
"4871ae1e774bdf14f0fb1705",
"863e45a17c119a4889c1b6f2",
"6e57c88fd7790f9c90e516f3",
"12cd39ee70d57aa199860bd5"
],
"created": "2016-01-17T06:52:46.062Z",
"created_by": "5e134c0b29458e7e17ea02c5",
"last_updated": "2009-08-12T06:13:24.758Z",
"last_updated_by": "c843848b619f4e129ca967c1"
}
}
Copied to Clipboard
{
"type": "object",
"properties": {
"form_name": {
"title": "form_name",
"$ref": "formDocument#/definitions/formName"
},
"data": {
"title": "data",
"$ref": "formDocument"
}
},
"required": [
"form_name",
"data"
],
"additionalProperties": false
}
Return
DetailsExampleSchema
Name |
Type |
Description |
data |
object |
Forms details |
Copied to Clipboard
{
"name": "Form 123",
"children": [
{
"type": "field",
"name": "ipaddress",
"properties": {
"type": "string",
"prefix": ""
},
"description": "IP address",
"element": "{\"type\":\"method\",\"id\":{\"name\":\"method_name_1\"}}",
"source_type": "method",
"source": "method_name_1",
"id": "a40044c2-f378-4b2b-a81a-41d78979e583",
"yangkey": "",
"key": "method_name_1.ipAddress"
}
],
"elements": [
{
"type": "method",
"id": {
"name": "method_name_1"
}
}
],
"_id": "fd007b8a-4012-dde0-52f7-cbe6ea868033",
"groups": [
"4a7d614924ff668344a58169",
"b79cd9b83a69e34c76f86092",
"3669c2bfbc86da36595e6263",
"df3ec18511e71c7e52cf19ac",
"1457b970b0d1b6353856257f"
],
"created": "1946-06-02T02:06:20.041Z",
"created_by": "188c644e1746ce8d3e2d82c1",
"last_updated": "1947-01-02T07:46:21.702Z",
"last_updated_by": "dcf614e9234532528fb777fd"
}