{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/postcssrc/latest.json",
  "x-lintel": {
    "source": "https://www.schemastore.org/postcssrc.json",
    "sourceSha256": "8b2adb5ae678aa321d06cba5ae064b1ad775cc2fa36ac9442124f46c881e1aaa",
    "fileMatch": [
      ".postcssrc",
      ".postcssrc.json",
      ".postcssrc.yaml",
      ".postcssrc.yml"
    ],
    "parsers": [
      "json",
      "yaml"
    ]
  },
  "type": "object",
  "properties": {
    "parser": {
      "description": "A special syntax parser (for example, SCSS).",
      "oneOf": [
        {
          "type": "string"
        },
        {
          "enum": [
            false
          ]
        }
      ]
    },
    "stringifier": {
      "description": "A special syntax output generator (for example, Midas).",
      "oneOf": [
        {
          "type": "string"
        },
        {
          "enum": [
            false
          ]
        }
      ]
    },
    "syntax": {
      "description": "An object providing a syntax parser and a stringifier.",
      "oneOf": [
        {
          "type": "string"
        },
        {
          "enum": [
            false
          ]
        }
      ]
    },
    "map": {
      "description": "Source map options.",
      "enum": [
        false,
        "absolute",
        "inline",
        "sourcesContent"
      ]
    },
    "from": {
      "description": "The input file name (most runners set it automatically).",
      "type": "string"
    },
    "to": {
      "description": "The output file name (most runners set it automatically).",
      "type": "string"
    },
    "plugins": {
      "oneOf": [
        {
          "description": "An array of plugins.",
          "type": "array",
          "items": {
            "$ref": "#/$defs/ConfigPlugin"
          }
        },
        {
          "description": "An object of options.",
          "type": "object",
          "additionalProperties": {
            "$ref": "#/$defs/ConfigPlugin"
          }
        }
      ]
    }
  },
  "id": "https://json.schemastore.org/postcssrc.json",
  "$defs": {
    "ConfigPlugin": {
      "oneOf": [
        {
          "type": "object"
        },
        {
          "enum": [
            false
          ]
        }
      ]
    }
  },
  "additionalProperties": false
}
