action freetv_app_get_latest_news { label: "Query the latest news" description: "Get the current latest news to user" provider: freetv_app method: GET path: "/services" encoding: json input: { type: "object" properties: { funcs: { type: "string" enum: ["getLatestNewsForChatGPT"] } mobile: { type: "integer" enum: [1] } } required: ["funcs", "mobile"] additionalProperties: false } output: { type: "object" required: ["getLatestNewsForChatGPT"] properties: { getLatestNewsForChatGPT: { type: "array" description: "The list of latest news." items: { type: "object" properties: { created: { type: "string" } ref: { type: "string" } thumbnail: { type: "string" } title: { type: "string" } } } } } } }