{
  "slug": "csv-to-yaml",
  "name": "gizza-ai/csv-to-yaml",
  "version": "0.1.0",
  "title": "CSV to YAML — Convert CSV to a YAML list — gizza.ai",
  "description": "Convert a CSV table into a YAML list of objects keyed by the header row, in your browser. Free, private, no upload.",
  "tags": [
    "csv to yaml",
    "csv yaml converter",
    "yaml list",
    "tabular to yaml",
    "convert csv"
  ],
  "category": "data",
  "urls": {
    "page": "https://gizza.ai/tools/csv-to-yaml/",
    "markdown": "https://gizza.ai/tools/csv-to-yaml/index.md",
    "descriptor": "https://gizza.ai/tools/csv-to-yaml/tool.json",
    "deep_link_example": "https://gizza.ai/tools/csv-to-yaml/?data=name%2Cage%0AAda%2C36%0ABo%2C40&header=true&infer_types=true&delimiter=%2C"
  },
  "cli": "gizza tool csv-to-yaml \"name,age\nAda,36\nBo,40\"",
  "tool": {
    "description": "Convert a CSV table into a YAML list (sequence) of objects keyed by the header row (or col1… when header=false). Column order is preserved. infer_types=true (default) turns cell text into numbers/booleans/null (leading-zero and signed strings stay text); false keeps strings. delimiter is a single char or comma/tab/semicolon/pipe. Runs locally.",
    "parameters": {
      "additionalProperties": false,
      "properties": {
        "data": {
          "description": "The CSV text.",
          "type": "string"
        },
        "delimiter": {
          "default": ",",
          "description": "Field separator: a single char or 'comma'/'tab'/'semicolon'/'pipe'. Default ','.",
          "type": "string"
        },
        "header": {
          "default": true,
          "description": "Use the first row as the object keys (default true); otherwise 'col1'… are used.",
          "type": "boolean"
        },
        "infer_types": {
          "default": true,
          "description": "Infer numbers, booleans and null from cell text (default true); false keeps everything as strings.",
          "type": "boolean"
        }
      },
      "required": [
        "data"
      ],
      "type": "object"
    }
  }
}