app-operations_manager Schemas

On this page:

manual-trigger-common

{ "$id": "manual-trigger-common", "title": "Manual Triggers Schema Common Definitions", "description": "Common elements in the schema for a Manual Trigger", "definitions": { "commonManualTriggerFieldNames": { "enum": [ "formData", "formSchemaHash", "lastExecuted" ] }, "commonManualTriggerFields": { "type": "object", "properties": { "type": { "const": "manual" }, "formData": { "description": "A pre-filled JSON object created by filling out the associated JSON Form.", "type": [ "object", "null" ], "examples": [ { "deviceName": "ATL-123", "action": "SYNC" }, { "deviceName": "XYZ-987", "action": "SHUTDOWN" } ] }, "formSchemaHash": { "type": [ "string", "null" ] }, "lastExecuted": { "description": "A timestamp in milliseconds of the time this job was last executed.", "oneOf": [ { "type": "integer", "minimum": 0 }, { "type": "null" } ] } } } } }