action mastodon_get_api_v1_scheduled_statuses { label: "get_api_v1_scheduled_statuses" description: "View scheduled statuses" provider: mastodon method: GET path: "/api/v1/scheduled_statuses" encoding: json input: { type: "object" properties: { limit: { type: "integer" } max_id: { type: "string" } min_id: { type: "string" } since_id: { type: "string" } } additionalProperties: false } output: { type: "array" items: { description: "Represents a status that will be published at a future scheduled date." required: ["id", "scheduled_at", "params", "media_attachments"] properties: { id: { type: "string" description: "ID of the scheduled status in the database. Cast from an integer, but not guaranteed to be a number." } media_attachments: { type: "array" description: "Array of attachements" items: { description: "Represents a file or media attachment that can be added to a status." required: ["id", "type", "url", "preview_url"] properties: { blurhash: { type: "string" description: "A hash computed by the [BlurHash algorithm](https://github.com/woltapp/blurhash), for generating colorful preview thumbnails when media has not been downloaded yet." } description: { type: "string" description: "Alternate text that describes what is in the media attachment, to be used for the visually impaired or when media attachments do not load." } id: { type: "string" description: "The ID of the attachment in the database. Cast from an integer but not guaranteed to be a number" } meta: { type: "object" description: "Metadata returned by Paperclip." } preview_url: { type: "string" description: "The location of a scaled-down preview of the attachment." } remote_url: { type: "string" description: "The location of the full-size original attachment on the remote website. String or null if the attachment is local." } text_url: { type: "string" description: "A shorter URL for the attachment." } type: { type: "string" description: "The type of the attachment." enum: ["unknown", "image", "gifv", "video", "audio"] } url: { type: "string" description: "The location of the original full-size attachment." } } } } params: { properties: { application_id: { type: "string" description: "application_id" } in_reply_to_id: { type: "string" description: "in_reply_to_id" } media_ids: { type: "array" description: "media_ids" items: { type: "string" } } scheduled_at: { type: "string" format: "date-time" description: "scheduled_at" } sensitive: { type: "boolean" description: "sensitive" } spoiler_text: { type: "string" description: "spoiler_text" } text: { type: "string" description: "text" } visibility: { type: "string" description: "visibility" } } } scheduled_at: { type: "string" format: "date-time" description: "ID of the status in the database. ISO 8601 Datetime." } } } } }