action discourse_post_replies { label: "List replies to a post" provider: discourse method: GET path: "/posts/{id}/replies.json" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "name", "username", "avatar_template", "created_at", "cooked", "post_number", "post_type", "updated_at", "reply_count", "reply_to_post_number", "quote_count", "incoming_link_count", "reads", "readers_count", "score", "yours", "topic_id", "topic_slug", "display_username", "primary_group_name", "flair_name", "flair_url", "flair_bg_color", "flair_color", "version", "can_edit", "can_delete", "can_recover", "can_wiki", "user_title", "reply_to_user", "bookmarked", "actions_summary", "moderator", "admin", "staff", "user_id", "hidden", "trust_level", "deleted_at", "user_deleted", "edit_reason", "can_view_edit_history", "wiki", "reviewable_id", "reviewable_score_count", "reviewable_score_pending_count"] properties: { actions_summary: { type: "array" items: { type: "object" required: ["id", "can_act"] properties: { can_act: { type: "boolean" } id: { type: "integer" } } additionalProperties: false } } admin: { type: "boolean" } avatar_template: { type: "string" } bookmarked: { type: "boolean" } can_delete: { type: "boolean" } can_edit: { type: "boolean" } can_recover: { type: "boolean" } can_view_edit_history: { type: "boolean" } can_wiki: { type: "boolean" } cooked: { type: "string" } created_at: { type: "string" } deleted_at: { type: ["string", "null"] } display_username: { type: ["string", "null"] } edit_reason: { type: ["string", "null"] } flair_bg_color: { type: ["string", "null"] } flair_color: { type: ["string", "null"] } flair_name: { type: ["string", "null"] } flair_url: { type: ["string", "null"] } hidden: { type: "boolean" } id: { type: "integer" } incoming_link_count: { type: "integer" } moderator: { type: "boolean" } name: { type: ["string", "null"] } post_number: { type: "integer" } post_type: { type: "integer" } primary_group_name: { type: ["string", "null"] } quote_count: { type: "integer" } readers_count: { type: "integer" } reads: { type: "integer" } reply_count: { type: "integer" } reply_to_post_number: { type: "integer" } reply_to_user: { type: "object" required: ["username", "avatar_template"] properties: { avatar_template: { type: "string" } name: { type: "string" } username: { type: "string" } } additionalProperties: false } reviewable_id: { type: ["string", "null"] } reviewable_score_count: { type: "integer" } reviewable_score_pending_count: { type: "integer" } score: { type: "integer" } staff: { type: "boolean" } topic_id: { type: "integer" } topic_slug: { type: "string" } trust_level: { type: "integer" } updated_at: { type: "string" } user_deleted: { type: "boolean" } user_id: { type: "integer" } user_title: { type: ["string", "null"] } username: { type: "string" } version: { type: "integer" } wiki: { type: "boolean" } yours: { type: "boolean" } } } } }