action firmalyzer_get_config_issues { label: "Get default OS configuration issues of a device firmware" provider: firmalyzer method: GET path: "/firmware/{firmware_hash}/config-issues" encoding: json input: { type: "object" properties: { firmware_hash: { type: "string" description: "SHA2 hash of device firmware" } } required: ["firmware_hash"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { config_file: { type: "string" } issues: { type: "array" items: { type: "string" } } service_name: { type: "string" } suggestions: { type: "array" items: { type: "string" } } } } } }