saadat_qadri
04/05/2021, 4:52 PM{
"data": {
"2": {
"id": 2,
"type": "HIDDEN",
"question": "Question1",
"section_id": 1,
"shown": true
},
"3": {
"id": 3,
"type": "HIDDEN",
"question": "Email Address",
"section_id": 1,
"shown": true
},
....
}
I’ve tried a few options for my schema.json
file for this tap, but no luck. Any clues?saadat_qadri
04/05/2021, 4:53 PMsaadat_qadri
04/05/2021, 4:54 PM"data": {
"type": "object",
"properties": {
"$id": {
"id": {
"type": "integer"
},
"type": {
"type": "string"
},
"question": {
"type": "string"
},
"section_id": {
"type": "integer"
},
"shown": {
"type": "boolean"
}
}
}
}
aaronsteers
04/05/2021, 6:38 PMaaronsteers
04/05/2021, 6:41 PMjuan_sebastian_suarez_valencia
04/05/2021, 7:15 PMsaadat_qadri
04/05/2021, 7:46 PMpatternProperties
for this usecase.aaronsteers
04/05/2021, 9:20 PM