{
"@context": "https://schema.org",
"@type": "Process",
"owner_type": "user",
"@id": "test-reddit-fetch",
"name": "Test Reddit Fetch",
"version": "1.0.0",
"entry_point_id": "start",
"inputs": [],
"steps": [
{
"@type": "Step",
"@id": "start",
"name": "Start",
"step_type": "start",
"transitions": [
{
"target_id": "fetch_test"
}
]
},
{
"@type": "Step",
"@id": "fetch_test",
"name": "Fetch Reddit",
"step_type": "service",
"action": "reddit.fetch",
"params": {
"subreddits": [
"projectcar"
],
"limit": 5,
"timeFrame": "24h"
},
"transitions": [
{
"target_id": "end"
}
]
},
{
"@type": "Step",
"@id": "end",
"name": "End",
"step_type": "end",
"transitions": []
}
],
"outputs": {
"items": "{{fetch_test.items}}"
}
}