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

{
  "products": [
    { "productId": "P-442", "title": "Gaming Mouse", "brand": "Neva", "category": "Accessories", "inStock": true },
    { "productId": "P-443", "title": "Gaming Keyboard", "brand": "Nova", "category": "Accessories", "inStock": false }
  ]
}

Output

{
  "products": [
    { "productId": "P-442", "title": "Gaming Mouse", "brand": "Neva", "category": "Accessories", "inStock": true },
    { "productId": "P-443", "title": "Gaming Keyboard", "brand": "Nova", "category": "Accessories", "inStock": false }
  ]
}

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" }
  ]
}