action botify_get_project_analyses { label: "List all analyses for a project" description: "List all analyses for a project" provider: botify method: GET path: "/analyses/{username}/{project_slug}" encoding: json input: { type: "object" properties: { page: { type: "integer" } size: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" } next: { type: "string" } page: { type: "integer" } previous: { type: "string" } results: { type: "array" items: { type: "object" required: ["user"] properties: { config: { type: "string" } date_created: { type: "string" format: "date-time" } date_finished: { type: "string" format: "date-time" } date_last_modified: { type: "string" format: "date-time" description: "Date of last modified analysis" } date_launched: { type: "string" format: "date-time" } features: { type: "string" } id: { type: "integer" format: "int64" } name: { type: "string" } slug: { type: "string" } status: { type: "string" } url: { type: "string" } urls_done: { type: "string" } urls_in_queue: { type: "string" } user: { type: "object" properties: { company_name: { type: "string" } date_joined: { type: "string" format: "date-time" } email: { type: "string" } first_name: { type: "string" } is_organization: { type: "string" } last_name: { type: "string" } login: { type: "string" } status: { type: "string" } url: { type: "string" } } } } } } size: { type: "integer" } } } }