action daniweb_get_apps { label: "get_apps" description: "Fetch all Daniapps that are currently in production mode." provider: daniweb method: GET path: "/apps" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } 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" } } } } } } pagination: { type: "object" properties: { limit: { type: "number" format: "int32" } offset: { type: "number" format: "int32" } total_records: { type: "number" format: "int32" } } } } } }