action jumpseller_get_jsapps_json { label: "Retrieve all the Store's JSApps." provider: jumpseller method: GET path: "/jsapps.json" encoding: json output: { type: "object" properties: { apps: { type: "array" items: { type: "object" properties: { author: { type: "string" description: "Author of the app" } code: { type: "string" description: "Code of the app" } description: { type: "string" description: "Description of the app" } js: { type: "boolean" description: "True if the app is a jsapp" } name: { type: "string" description: "Name of the app" } page: { type: "string" description: "Page of the app" } } } } } } }