Hello everybody I hope you are doing well,
Im trying to do a flow that will take data of a CV and populate a template word with it.
The problem is when it have more than one experience, How can iterate on it to have al the experiences populate on?
My flow look like this:

this is the schema of the parse json:
{
"info": {
"type": "object",
"properties": {
"full_name": {
"type": "string"
},
"first_name": {
"type": "string"
},
"last_name": {
"type": "string"
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"date_birth": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"lat": {},
"lng": {},
"gmaps": {},
"fields": {}
}
},
"urls": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"url": {
"type": "string"
}
},
"required": [
"type",
"url"
]
}
},
"picture": {},
"gender": {
"type": "string"
},
"summary": {
"type": "string"
}
}
},
"text_language": {
"type": "string"
},
"text": {
"type": "string"
},
"experiences_duration": {
"type": "number"
},
"experiences": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"company": {
"type": "string"
},
"logo": {},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"location": {
"type": "object",
"properties": {
"text": {
"type": "string"
},
"lat": {},
"lng": {},
"gmaps": {},
"fields": {}
}
},
"date_start": {
"type": "string"
},
"date_end": {
"type": "string"
},
"skills": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {}
},
"required": [
"name",
"type",
"value"
]
}
},
"certifications": {
"type": "array"
},
"courses": {
"type": "array"
},
"tasks": {
"type": "array"
}
},
"required": [
"key",
"company",
"logo",
"title",
"description",
"location",
"date_start",
"date_end",
"skills",
"certifications",
"courses",
"tasks"
]
}
},