prompts.chatprompts.chatprompts.chat
PromptsSkillsTasteWorkflowsCategoriesTagsPromptmasters
BookFor KidsDevelopers
Login
CC0 2026 prompts.chat
DeepWikiHow to...DocsAPIPrivacyTermsSupportAboutGitHub

Data Transformer

F
@f
4 days agoMarch 11, 2026 at 10:06 PM
Coding

Content

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}

Comments (0)