action neutrinoapi_convert { label: "Convert" description: "A currency and unit conversion tool" provider: neutrinoapi method: GET path: "/convert" encoding: json input: { type: "object" properties: { "from-type": { type: "string" } "from-value": { type: "string" } "to-type": { type: "string" } } required: ["from-type", "from-value", "to-type"] additionalProperties: false } output: { type: "object" required: ["from-type", "from-value", "result", "result-float", "to-type", "valid"] properties: { "from-type": { type: "string" description: "The type of the value being converted from" } "from-value": { type: "string" description: "The value being converted from" } result: { type: "string" description: "The result of the conversion in string format" } "result-float": { type: "number" format: "double" description: "The result of the conversion as a floating-point number" } "to-type": { type: "string" description: "The type being converted to" } valid: { type: "boolean" description: "True if the conversion was successful and produced a valid result" } } } }