action openalpr_recognize_url { label: "recognizeUrl" description: "Send an image for OpenALPR to analyze and provide metadata back\nThe image is sent as a URL. The OpenALPR service will download the image \nand process it\n" provider: openalpr method: POST path: "/recognize_url" encoding: json input: { type: "object" properties: { image_url: { type: "string" } } required: ["image_url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }