Preview data structure - smbc-digital/form-builder GitHub Wiki
Preview data structure
You can see the structure of the data your form will submit to the Service by navigating to [form]/data-structure
for example exemplar/data-structure
.
Accessible in local, int, and qa environments only
The displayed json will include IncomingData values, values obtained from RetrieveExternalData, the CaseReference, and if applicable the PaymentAmount. Values for all the data will be the type of object for that property, for example "dateOfBirth": "DateTime"
indicates that the property dateOfBirth
will be a DateTime
object type.
Any data that comes in from an external Service is stored in FormBuilder as Dynamic
therefore you will need to consider what you are expecting from your external Service when you create your form Service model.