Can't Validate - What am I doing wrong?

SEP 21 20:06:36
Using JSON crawler Order validation – Snipcart Documentation) to validate item ‘canvas-bag’ located at https://byronbaywildlifehospital.org/api/product-list’.

Hey @loadout,

The problem is that in your JSON document, the price property is a string but it must be a number.

For instance:

{
  id: "badge",
  name: "Logo Button Badge",
  price: "4.00",
  url: "https://byronbaywildlifehospital.org/api/product-list"
}

should be:

{
  id: "badge",
  name: "Logo Button Badge",
  price: 4.00,
  url: "https://byronbaywildlifehospital.org/api/product-list"
}