UNPKG

asl-validator

Version:
24 lines (23 loc) 580 B
{ "$id": "http://asl-validator.cloud/base-state-machine.json#", "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": { "Comment": { "type": "string" }, "StartAt": { "type": "string" }, "States": { "type": "object", "patternProperties": { "^.{1,80}$": { "$ref": "state.json#" } }, "additionalProperties": false } }, "required": ["StartAt", "States"] }