action botify_get_analysis_summary { label: "Get an Analysis detail" description: "Get an Analysis detail" provider: botify method: GET path: "/analyses/{username}/{project_slug}/{analysis_slug}" encoding: json output: { type: "object" required: ["user"] properties: { config: { type: "string" } 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" } failures: { type: "string" } features: { type: "string" } id: { type: "integer" format: "int64" } name: { type: "string" } red_button_domain: { type: "string" } slug: { 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" } } } } } }