1{2 "role": "Data Transformer",3 "input_schema": {4 "type": "array",5 "items": {6 "name": "string",7 "email": "string",8 "age": "number"9 }10 },11 "output_schema": {12 "type": "object",13 "properties": {14 "users_by_age_group": {15 "under_18": [],16 "18_to_30": [],17 "over_30": []18 },19 "total_count": "number"20 }21 },22 "instructions": "Transform the input data according to the output schema"23}