Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

18/12/2023 19:27 impact data structure details | Gino-Wiki

󰋜 / backend / impact_data_structure

impact data structure details


impact data structure details

impact data structure details


Impact returns the structure of the result data.

▸ TEXT:

1 {
2 "pos": [
3 0,
4 1
5 ],
6 "text": "variable corresponding answered value",
7 "value": "variable corresponding answered value",
8 "name": "variable name",
9 "is_parsed": false
10 }

▸ LIST

1 {
2 "pos": [
3 0,
4 1
5 ],
6 "text": "answerA",
7 "value": "answerA"
8 "name": "variable name",
9 "is_parsed": false
10 "options": [
11 {
12 "text": "xxx",
13 "name": "xxx",
14 "pos": [
15 1,
16 3
17 ]
18 }
19 ]
20 }

https://wiki.ginolegaltech.cn/en/backend/impact_data_structure 1/3
18/12/2023 19:27 impact data structure details | Gino-Wiki

▸ MULTI-SELECT

1 {
2 "pos": [
3 0,
4 1
5 ],
6 "text": "answerA",
7 "name": "variable name",
8 "value": "answerA,answerB"
9 "is_parsed": false
10 "options": [
11 {
12 "text": "xxx",
13 "name": "xxx",
14 "pos": [
15 1,
16 3
17 ]
18 }
19 ]
20 }

▸ DATE

1 {
2 "pos": [
3 0,
4 1
5 ],
6 "text": "30 septembre 2022",
7 "value": "09/30/2022",
8 "name": "variable name",
9 "is_parsed": false
10 }

▸ BOOLEAN

1 {
2 "text": "Yes",
3 "name": "le renouvellement par tacite reconduction",
4 "type": "bool",
5 "pos": [
6 0,
7 1
8 ],
https://wiki.ginolegaltech.cn/en/backend/impact_data_structure 2/3
18/12/2023 19:27 impact data structure details | Gino-Wiki
9 "is_parsed": false,
10 "value": 1
11 }

▸ PERCENTAGE

1 {
2 "pos": [
3 0,
4 1
5 ],
6 "text": "99.9%",
7 "name": "percentage number",
8 "value": "99.9"
9 "is_parsed": false
10 }

▸ NUMBER

1 {
2 "pos": [
3 0,
4 1
5 ],
6 "text": "99.99",
7 "name": "number",
8 "value": "99.99"
9 "is_parsed": false
10 }

Powered by Wiki.js

https://wiki.ginolegaltech.cn/en/backend/impact_data_structure 3/3

You might also like