{
  "$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"]
}
