action bandsintown_artist { label: "Get artist information" description: "Get artist information\n" provider: bandsintown method: GET path: "/artists/{artistname}" encoding: json input: { type: "object" properties: { app_id: { type: "string" } artistname: { type: "string" } } required: ["app_id", "artistname"] additionalProperties: false } output: { type: "object" additionalProperties: true } }