Diff Checker
Compare mode:
Ignore:
View:
Original
1{
2 "id": 123,
3- "name": "John Doe",
4 "email": "john.doe@example.com",
5- "role": "user",
6 "permissions": [
7 "read",
8 "write"
9 ],
10 "profile": {
11 "age": 30,
12 "country": "US",
13 "active": true,
14- "lastLogin": "2024-05-20T10:00:00Z"
15 },
16 "tags": [
17 "developer",
18 "javascript"
19 ],
20 "settings": {
21 "theme": "dark",
22 "notifications": true
23 },
24 "createdAt": "2024-05-20T10:00:00Z"
25}
Modified
1{
2 "id": 123,
3+ "name": "Johnathan Doe",
4 "email": "john.doe@example.com",
5+ "role": "admin",
6 "permissions": [
7 "read",
8 "write",
9+ "delete"
10 ],
11 "profile": {
12 "age": 31,
13 "country": "USA",
14 "active": true,
15 "lastLogin": "2024-05-21T08:30:00Z"
16 },
17 "tags": [
18 "developer",
19+ "javascript",
20 "typescript"
21 ],
22 "settings": {
23 "theme": "dark",
24+ "notifications": false
25 },
26 "updatedAt": "2024-05-21T09:15:00Z"
27}
Changes
6
Added
5
Modified
0
Deleted
11
Unchanged
nameString changed
- "John Doe"
+ "Johnathan Doe"
roleString changed
- "user"
+ "admin"
permissions1 change
+ "delete"
profile.ageNumber changed
- 30
+ 31
profile.countryString changed
- "US"
+ "USA"
tags1 change
+ "typescript"
settings.notificationsBoolean changed
- true
+ false
updatedAtString added
+ "2024-05-21T09:15:00Z"
● JSONLn 1, Col 1Spaces: 2Original: v1.json (23 lines)Modified: v2.json (26 lines)
Comparing● 1.24 KBvs1.37 KB