action adobe_get_bundle_info { label: "getBundleInfo" provider: adobe method: GET path: "/system/console/bundles/{name}.json" encoding: json input: { type: "object" properties: { name: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { category: { type: "string" description: "Bundle category" } fragment: { type: "boolean" description: "Is bundle a fragment" } id: { type: "integer" description: "Bundle ID" } name: { type: "string" description: "Bundle name" } props: { type: "array" items: { type: "object" properties: { key: { type: "string" description: "Bundle data key" } value: { type: "string" description: "Bundle data value" } } } } state: { type: "string" description: "Bundle state value" } stateRaw: { type: "integer" description: "Numeric raw bundle state value" } symbolicName: { type: "string" description: "Bundle symbolic name" } version: { type: "string" description: "Bundle version" } } } } s: { type: "array" items: { type: "integer" } } status: { type: "string" description: "Status description of all bundles" } } } }