action apptigent_json_to_html {
label: "Data - JSON to HTML Table"
description: "Convert a JSON array to an HTML table"
provider: apptigent
method: POST
path: "/JSONtoHTML"
encoding: json
input: {
type: "object"
required: ["header", "input"]
properties: {
alternate: {
type: "string"
description: "Alternate header row markup"
}
attributes: {
type: "string"
description: "Optional table attributes (single quoted values)"
}
header: {
type: "boolean"
description: "Include header row"
}
input: {
type: "string"
description: "JSON array object"
}
omit: {
type: "string"
description: "Columns to omit (comma separated)"
}
order: {
type: "string"
description: "Column order (comma separated)"
}
}
}
output: {
type: "object"
properties: {
result: {
type: "string"
description: "Result"
}
}
}
}