{ "name": "Game of Flows (Alpha)", "description": "", "version": "1.0.3", "channelformat": "v2", "type": "channel", "recurrence": 1, "realtimeavailable": false, "methods": [ { "name": "Get Character", "description": "No description provided.", "kind": "action", "params": [ { "": { "type": "", "displayname": "" } } ], "input": { "extensible": false, "attributes": [ { "name": "Character Info", "attributes": [ { "name": "Character ID", "type": "string" } ] } ] }, "output": { "extensible": false, "attributes": [ { "name": "Character Info", "attributes": [ { "name": "Name", "type": "string" }, { "name": "Culture", "type": "string" }, { "name": "Aliases", "type": "string", "collection": true } ] }, { "name": "TV Series Info", "attributes": [ { "name": "Played By", "type": "string" } ] } ] }, "zebricks": [ { "brick": "http.get", "id": "GET", "inputs": { "url": { "_availableTypes": [ "string" ], "_type": "string", "_array": false, "_value": "http://anapioficeandfire.com/api/characters/{{input.Character Info.Character ID}}" } }, "outputs": { "statusCode": { "_type": "number", "_array": false }, "body": { "_type": "object", "_array": false } } }, { "brick": "object.construct", "id": "H1Pzr", "inputs": { "Character Info": { "Name": "{{GET.body.name}}", "Culture": "{{GET.body.culture}}", "Aliases": "{{GET.body.aliases}}" }, "TV Series Info": { "Played By": "{{GET.body.playedBy.0}}" } }, "outputs": { "output": { "_type": "object", "_array": false } } } ] } ] }