{
  "$schema": "http://json-schema.org/draft-07/schema",
  "$id": "NgAddFixtureSchematicsSchema",
  "title": "Add Otter Fixture to an existing component",
  "description": "Add Otter Fixture to an existing component",
  "properties": {
    "path": {
      "type": "string",
      "description": "Path to the spec file of the component"
    },
    "specFilePath": {
      "type": "string",
      "description": "Path to spec file of the component"
    },
    "skipLinter": {
      "type": "boolean",
      "description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
      "default": false
    },
    "page": {
      "type": "boolean",
      "description": "Is the component a page",
      "default": false
    }
  },
  "additionalProperties": true,
  "required": [
    "path"
  ]
}
