aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2025-06-04 01:07:51 +0700
committerShulhan <ms@kilabit.info>2025-06-05 00:14:02 +0700
commitec44df63c7fdba18201992e83574fdce1e3bdc8f (patch)
tree8f96f2d84ef65bdf49ea485e006a925e05f47b58 /README
parent5687a7a87ad79c63831b9aa6fcb01a41e54cccc9 (diff)
downloadjarink-ec44df63c7fdba18201992e83574fdce1e3bdc8f.tar.xz
all: use snake case for JSON fields in Broken result
Diffstat (limited to 'README')
-rw-r--r--README26
1 files changed, 13 insertions, 13 deletions
diff --git a/README b/README
index 2d8b273..3335049 100644
--- a/README
+++ b/README
@@ -47,9 +47,9 @@ Available commands,
{
"$PAGE": [{
- "Link": <string>,
- "Error": <string>,
- "Code": <integer>
+ "link": <string>,
+ "error": <string>,
+ "code": <integer>
},
...
],
@@ -67,24 +67,24 @@ Available commands,
{
"https://kilabit.info/some/page": [
{
- "Link": "https://kilabit.info/some/page/image.png",
- "Code": 404
+ "link": "https://kilabit.info/some/page/image.png",
+ "code": 404
},
{
- "Link": "https://external.com/link",
- "Error": "Internal server error",
- "Code": 500
+ "link": "https://external.com/link",
+ "error": "Internal server error",
+ "code": 500
}
],
"https://kilabit.info/another/page": [
{
- "Link": "https://kilabit.info/another/page/image.png",
- "Code": 404
+ "link": "https://kilabit.info/another/page/image.png",
+ "code": 404
},
{
- "Link": "https://external.org/link",
- "Error": "Internal server error",
- "Code": 500
+ "link": "https://external.org/link",
+ "error": "Internal server error",
+ "code": 500
}
]
}