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": "b66c6e88-19e9-e114-5637-4ddab36642b1",
"groups": [
"d757fc8afb7752e4ab66b154",
"77d84d36ae101bdab9ddb6b6",
"62611c314341235e8e7a9146",
"daab315036a1585ad0aa1c97",
"ae8bf14a402a2bf8dccaa488"
],
"created": "1956-02-13T01:08:45.851Z",
"created_by": "0bb080c9c25f59cfbafe46d3",
"last_updated": "2020-08-19T11:29:17.332Z",
"last_updated_by": "af5b9a997dbb7607136e90ec"
}
}
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": "8d1ecccf-8100-6bbf-fed0-c2af77a9636a",
"groups": [
"d98079e557e400e7586d3e2d",
"6b13eaa2636f6fafaf8e24ca",
"abecdf17ea25125d507db7ca",
"34fa9710e41245f3e522b9af",
"9b19382eb1c09f0e6ed7f78b"
],
"created": "1983-02-14T00:51:20.206Z",
"created_by": "6981ef6c84a657619adf8593",
"last_updated": "1968-06-18T20:38:03.813Z",
"last_updated_by": "2a0845f68c57938a2ff7ab13"
}