JSON Example

Invalid Trailing Comma

JSON payload that fails parsing because of trailing commas.

Sample Payload

{
  "name": "Alice",
  "roles": ["admin",],
}

Notes

  • JSON does not allow trailing commas in arrays or objects.
  • Most parsers throw a syntax error near the final element.

More JSON Examples