jx/internal/resource/schemas/processtransition.schema.json
Matthew Rich 397f7c9dee
Some checks failed
Lint / golangci-lint (push) Failing after 9m48s
Declarative Tests / test (push) Failing after 1m3s
add state schema
2024-05-05 18:03:35 -07:00

10 lines
277 B
JSON

{
"$id": "processtransition.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "processtransition",
"type": "string",
"description": "Process state transition",
"enum": [ "created", "restarting", "running", "paused", "exited", "dead" ]
}