NEVAJSON

Decode JSON

Auto decoding enabled
Chars: 0Tokens: 0

Parsed Result

Convert to

Decoded strings: 0

No JSON data to display.

User Profile JSON

Parse standard user profile payload and validate field structure.

Input

{
  "userId": 9021,
  "name": "John Doe",
  "role": "editor",
  "isActive": true
}

Output

{
  "userId": 9021,
  "name": "John Doe",
  "role": "editor",
  "isActive": true
}

Product Catalog JSON

Read product records and inspect category, pricing, and stock data.

Input

{
  "productId": "P-442",
  "title": "Gaming Mouse",
  "price": 49.9,
  "currency": "USD",
  "inStock": true
}

Output

{
  "productId": "P-442",
  "title": "Gaming Mouse",
  "price": 49.9,
  "currency": "USD",
  "inStock": true
}

Event List JSON

Parse array-based event logs with timestamp and status fields.

Input

{
  "events": [
    { "id": 1, "status": "queued", "time": "10:00" },
    { "id": 2, "status": "processed", "time": "10:02" }
  ]
}

Output

{
  "events": [
    { "id": 1, "status": "queued", "time": "10:00" },
    { "id": 2, "status": "processed", "time": "10:02" }
  ]
}