action pandascore_get_teams { label: "List teams" description: "List teams" provider: pandascore method: GET path: "/teams" encoding: json input: { type: "object" properties: { filter: { type: "object" properties: { acronym: { type: "array" items: { type: "string" } } id: { type: "array" items: { type: "integer" } } location: { type: "array" items: { type: "string" description: "The team's organization location" } } modified_at: { type: "array" items: { type: "string" format: "date-time" } } name: { type: "array" items: { type: "string" } } slug: { type: "array" items: { type: "string" } } videogame_id: { type: "array" items: { type: "integer" description: "A videogame ID" enum: [1, 3, 4, 14, 20, 22, 23, 24, 25, 26] } } } additionalProperties: false } range: { type: "object" properties: { acronym: { type: "array" items: { type: "string" } } id: { type: "array" items: { type: "integer" } } location: { type: "array" items: { type: "string" description: "The team's organization location" } } modified_at: { type: "array" items: { type: "string" format: "date-time" } } name: { type: "array" items: { type: "string" } } slug: { type: "array" items: { type: "string" } } } additionalProperties: false } search: { type: "object" properties: { acronym: { type: "string" } location: { type: "string" description: "The team's organization location" } name: { type: "string" } slug: { type: "string" } } additionalProperties: false } sort: { type: "array" items: { enum: ["acronym", "-acronym", "id", "-id", "location", "-location", "modified_at", "-modified_at", "name", "-name", "slug", "-slug", "videogame_id", "-videogame_id"] type: "object" } } } additionalProperties: false } output: { type: "object" additionalProperties: true } }