{
  "name": "Data Migration Prep",
  "version": "1.0",
  "description": "Convert data formats, validate against schema expectations, and compare source vs target datasets.",
  "use_case": "Prepare data for migration between systems by converting formats, validating structure, and comparing datasets.",
  "keywords": ["data migration", "format conversion", "JSON to CSV", "data validation"],
  "tools": [
    {
      "step": 1,
      "name": "JSON to CSV Converter",
      "slug": "json-to-csv",
      "action": "Convert source data from JSON to CSV for target system compatibility",
      "params": {
        "input": "JSON array of records"
      }
    },
    {
      "step": 2,
      "name": "JSON Formatter",
      "slug": "json-formatter",
      "action": "Validate and pretty-print JSON schema to verify data structure",
      "params": {
        "input": "JSON data to validate"
      }
    },
    {
      "step": 3,
      "name": "Diff Checker",
      "slug": "diff-checker",
      "action": "Compare source and target data exports to identify differences",
      "params": {
        "left": "Source data export",
        "right": "Target data export"
      }
    }
  ]
}
