Convert all schemas to flat format with inline required/secret

All schemas (parameters, output, output_schema, conf_schema) now use the
StackStorm-style flat format expected by Attune:
  { param_name: { type, description, required, secret, ... } }

Instead of the standard JSON Schema format:
  { type: object, properties: { ... }, required: [...] }

Also fix rule template syntax: trigger.payload.* -> event.payload.*
This commit is contained in:
2026-02-23 08:46:05 -06:00
parent 9de5097061
commit 57532efabd
7 changed files with 110 additions and 133 deletions

View File

@@ -19,36 +19,30 @@ parameter_format: json
# Output format: json (structured data)
output_format: json
# Action parameters schema
# Action parameters schema (StackStorm-style: inline required per parameter)
parameters:
type: object
properties:
counter:
type: integer
description: "The counter value to consume"
rule_ref:
type: string
description: "The rule reference the counter is scoped to"
default: ""
required:
- counter
counter:
type: integer
description: "The counter value to consume"
required: true
rule_ref:
type: string
description: "The rule reference the counter is scoped to"
default: ""
# Output schema
# Output schema (StackStorm-style: inline required per parameter)
output_schema:
type: object
properties:
message:
type: string
description: "Formatted message containing the counter value"
counter:
type: integer
description: "The counter value that was consumed"
rule_ref:
type: string
description: "The rule reference the counter is scoped to"
required:
- message
- counter
message:
type: string
description: "Formatted message containing the counter value"
required: true
counter:
type: integer
description: "The counter value that was consumed"
required: true
rule_ref:
type: string
description: "The rule reference the counter is scoped to"
# Tags for categorization
tags: