app-workflow_engine Schemas

On this page:

timeProperties

{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "timeProperties", "type": "object", "title": "Time task methods common schema definitions", "definitions": { "offsetDuration": { "type": "object", "title": "offsetDuration", "properties": { "milliseconds": { "type": "number", "minimum": 0, "examples": [ 1 ] }, "seconds": { "type": "number", "minimum": 0, "examples": [ 1 ] }, "minutes": { "type": "number", "minimum": 0, "examples": [ 1 ] }, "hours": { "type": "number", "minimum": 0, "examples": [ 1 ] }, "days": { "type": "number", "minimum": 0, "examples": [ 1 ] }, "weeks": { "type": "number", "minimum": 0, "examples": [ 1 ] }, "months": { "type": "number", "minimum": 0, "examples": [ 1 ] }, "years": { "type": "number", "minimum": 0, "examples": [ 1 ] } } }, "timezones": { "type": "string", "title": "timezones", "enum": [ "-11:00", "-10:00", "-09:00", "-08:00", "-07:00", "-06:00", "-05:00", "-04:00", "-03:00", "-02:00", "-01:00", "+00:00", "+01:00", "+02:00", "+03:00", "+04:00", "+05:00", "+06:00", "+07:00", "+08:00", "+09:00", "+10:00", "+11:00", "+12:00" ], "examples": [ "+7:00" ] }, "formatString": { "title": "formatString", "type": "string", "examples": [ "YYYY-MM-DDTHH:mm:ss.SSSSSSZZ" ] }, "timeString": { "title": "timeString", "type": "string", "examples": [ "2019-01-01T14:28:21.886000-0700" ] }, "timeObject": { "title": "timeObject", "type": "object", "properties": { "formatString": { "$ref": "#/definitions/formatString" }, "time": { "$ref": "#/definitions/timeString" } } }, "epochFormat": { "type": "string", "enum": [ "Seconds", "Milliseconds" ], "examples": [ "Seconds" ] } } }