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": "ff0bd540-c73a-0040-3176-f570437f0db9",
"groups": [
"5b83ed5318f0773f6b16cb7c",
"6c9ae07285a9c8d5970b418b",
"2b516ed7266dbd8cadc62ab0"
],
"created": "2004-01-16T13:17:14.708Z",
"created_by": "5a23bf9e02de62d0a1ec709c",
"last_updated": "1994-09-19T21:54:05.549Z",
"last_updated_by": "f5a15ee78106618cfc20eb94"
}
}
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": "9b456d68-c1ce-bc38-b6a9-f606f2b3b5ce",
"groups": [
"a23dbe0e99c6bb3ad752c324",
"03e089c4332a96e0b0511154",
"e678d7d6ae8f4cd03411bfea",
"2af68ee4ca8742816fcb07db"
],
"created": "1961-05-11T14:33:27.906Z",
"created_by": "2729139d6f3a988c928d82e3",
"last_updated": "2013-08-29T01:28:11.014Z",
"last_updated_by": "86ff3889bf8f23094b2331ec"
}