action daniweb_get_apps_id { label: "get_apps_ID" description: "Fetch an array of Daniapps that are currently in production mode." provider: daniweb method: GET path: "/apps/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "array" items: { type: "integer" format: "int32" } } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" required: ["id"] properties: { about: { type: "object" properties: { description: { type: "string" } name: { type: "string" } website: { type: "object" properties: { thumbshot: { type: "string" } url: { type: "string" format: "uri" } } } } } id: { type: "number" format: "int32" } legal: { type: "object" properties: { privacy_url: { type: "string" format: "uri" } tos_url: { type: "string" format: "uri" } } } } } } } } }