{
  "$schema": "http://json-schema.org/schema",
  "cli": "nx",
  "$id": "NxPluginMigration",
  "title": "Create a Migration for an Nx Plugin",
  "description": "Create a Migration for an Nx Plugin.",
  "type": "object",
  "examples": [
    {
      "command": "nx g migration my-migration --project=my-plugin --version=1.0.0",
      "description": "Generate `libs/my-plugin/src/migrations/my-migration`"
    }
  ],
  "properties": {
    "project": {
      "type": "string",
      "description": "The name of the project.",
      "alias": "p",
      "$default": {
        "$source": "projectName"
      },
      "x-prompt": "What is the name of the project for the migration?"
    },
    "name": {
      "type": "string",
      "description": "Migration name.",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "description": {
      "type": "string",
      "description": "Migration description.",
      "alias": "d"
    },
    "packageVersion": {
      "type": "string",
      "description": "Version to use for the migration.",
      "alias": "v",
      "x-prompt": "What version would you like to use for the migration?"
    },
    "packageJsonUpdates": {
      "type": "boolean",
      "description": "Whether or not to include `package.json` updates.",
      "alias": "p",
      "default": false
    }
  },
  "required": ["project", "packageVersion"],
  "additionalProperties": false
}
