{
  "$schema": "http://json-schema.org/schema",
  "id": "architecture.presentation.state",
  "title": "Architecture State Schematic",
  "type": "object",
  "description": "Creates a new, generic state definition in the current project.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the state.",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "What should this state be named?"
    }
  },
  "required": [
    "name"
  ]
}
