mirror of
https://github.com/WebBreacher/WhatsMyName.git
synced 2025-06-18 14:25:31 -04:00
chore: auto-sort and format JSON files
This commit is contained in:
parent
b0b1219ae5
commit
0e3a416b67
@ -1,244 +1,246 @@
|
||||
{
|
||||
"definitions": {},
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"$id": "https://example.com/object1658520065.json",
|
||||
"title": "Root",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"license",
|
||||
"authors",
|
||||
"categories",
|
||||
"sites"
|
||||
],
|
||||
"properties": {
|
||||
"license": {
|
||||
"$id": "#root/license",
|
||||
"title": "License",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items":{
|
||||
"$id": "#root/license/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"Copyright (C) 2025 Micah Hoffman"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"authors": {
|
||||
"$id": "#root/authors",
|
||||
"title": "Authors",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items":{
|
||||
"$id": "#root/authors/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"WebBreacher"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"categories": {
|
||||
"$id": "#root/categories",
|
||||
"title": "Categories",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items":{
|
||||
"$id": "#root/categories/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"archived"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"sites": {
|
||||
"$id": "#root/sites",
|
||||
"title": "Sites",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items":{
|
||||
"$id": "#root/sites/items",
|
||||
"title": "Items",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"uri_check",
|
||||
"e_code",
|
||||
"e_string",
|
||||
"m_string",
|
||||
"m_code",
|
||||
"known",
|
||||
"cat"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"$id": "#root/sites/items/name",
|
||||
"title": "Name",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"101010.pl"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"uri_check": {
|
||||
"$id": "#root/sites/items/uri_check",
|
||||
"title": "Uri_check",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"https://101010.pl/@{account}"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"uri_pretty": {
|
||||
"$id": "#root/sites/items/uri_pretty",
|
||||
"title": "Uri_pretty",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"https://101010.pl/@{account}"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"post_body": {
|
||||
"$id": "#root/sites/items/post_body",
|
||||
"title": "Post_body",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
""
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"strip_bad_char": {
|
||||
"$id": "#root/sites/items/strip_bad_char",
|
||||
"title": "Strip_bad_char",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"."
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"e_code": {
|
||||
"$id": "#root/sites/items/e_code",
|
||||
"title": "E_code",
|
||||
"type": "integer",
|
||||
"default": "",
|
||||
"examples": [
|
||||
200
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"e_string": {
|
||||
"$id": "#root/sites/items/e_string",
|
||||
"title": "E_string",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"@101010.pl"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"m_string": {
|
||||
"$id": "#root/sites/items/m_string",
|
||||
"title": "M_string",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"The page you are looking for isn't here."
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"m_code": {
|
||||
"$id": "#root/sites/items/m_code",
|
||||
"title": "M_code",
|
||||
"type": "integer",
|
||||
"default": "",
|
||||
"examples": [
|
||||
404
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"known": {
|
||||
"$id": "#root/sites/items/known",
|
||||
"title": "Known",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items":{
|
||||
"$id": "#root/sites/items/known/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"szekspir"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"cat": {
|
||||
"$id": "#root/sites/items/cat",
|
||||
"title": "Cat",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"social"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"valid": {
|
||||
"$id": "#root/sites/items/valid",
|
||||
"title": "Valid",
|
||||
"type": "boolean",
|
||||
"examples": [
|
||||
true
|
||||
],
|
||||
"default": ""
|
||||
},
|
||||
"protection": {
|
||||
"$id": "#root/sites/items/protection",
|
||||
"title": "Protection",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items":{
|
||||
"$id": "#root/sites/items/protection/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"cloudflare", "captcha"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"$id": "#root/sites/items/headers",
|
||||
"title": "Headers",
|
||||
"type": "object",
|
||||
"default": [],
|
||||
"items":{
|
||||
"$id": "#root/sites/items/headers/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
{"accept": "text/html"}
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
"definitions": {},
|
||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||
"$id": "https://example.com/object1658520065.json",
|
||||
"title": "Root",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"license",
|
||||
"authors",
|
||||
"categories",
|
||||
"sites"
|
||||
],
|
||||
"properties": {
|
||||
"license": {
|
||||
"$id": "#root/license",
|
||||
"title": "License",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items": {
|
||||
"$id": "#root/license/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"Copyright (C) 2025 Micah Hoffman"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"authors": {
|
||||
"$id": "#root/authors",
|
||||
"title": "Authors",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items": {
|
||||
"$id": "#root/authors/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"WebBreacher"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"categories": {
|
||||
"$id": "#root/categories",
|
||||
"title": "Categories",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items": {
|
||||
"$id": "#root/categories/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"archived"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"sites": {
|
||||
"$id": "#root/sites",
|
||||
"title": "Sites",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items": {
|
||||
"$id": "#root/sites/items",
|
||||
"title": "Items",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"uri_check",
|
||||
"e_code",
|
||||
"e_string",
|
||||
"m_string",
|
||||
"m_code",
|
||||
"known",
|
||||
"cat"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
"$id": "#root/sites/items/name",
|
||||
"title": "Name",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"101010.pl"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"uri_check": {
|
||||
"$id": "#root/sites/items/uri_check",
|
||||
"title": "Uri_check",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"https://101010.pl/@{account}"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"uri_pretty": {
|
||||
"$id": "#root/sites/items/uri_pretty",
|
||||
"title": "Uri_pretty",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"https://101010.pl/@{account}"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"post_body": {
|
||||
"$id": "#root/sites/items/post_body",
|
||||
"title": "Post_body",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
""
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"strip_bad_char": {
|
||||
"$id": "#root/sites/items/strip_bad_char",
|
||||
"title": "Strip_bad_char",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"."
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"e_code": {
|
||||
"$id": "#root/sites/items/e_code",
|
||||
"title": "E_code",
|
||||
"type": "integer",
|
||||
"default": "",
|
||||
"examples": [
|
||||
200
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"e_string": {
|
||||
"$id": "#root/sites/items/e_string",
|
||||
"title": "E_string",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"@101010.pl"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"m_string": {
|
||||
"$id": "#root/sites/items/m_string",
|
||||
"title": "M_string",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"The page you are looking for isn't here."
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"m_code": {
|
||||
"$id": "#root/sites/items/m_code",
|
||||
"title": "M_code",
|
||||
"type": "integer",
|
||||
"default": "",
|
||||
"examples": [
|
||||
404
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"known": {
|
||||
"$id": "#root/sites/items/known",
|
||||
"title": "Known",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items": {
|
||||
"$id": "#root/sites/items/known/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"szekspir"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"cat": {
|
||||
"$id": "#root/sites/items/cat",
|
||||
"title": "Cat",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"social"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
},
|
||||
"valid": {
|
||||
"$id": "#root/sites/items/valid",
|
||||
"title": "Valid",
|
||||
"type": "boolean",
|
||||
"examples": [
|
||||
true
|
||||
],
|
||||
"default": ""
|
||||
},
|
||||
"protection": {
|
||||
"$id": "#root/sites/items/protection",
|
||||
"title": "Protection",
|
||||
"type": "array",
|
||||
"default": [],
|
||||
"items": {
|
||||
"$id": "#root/sites/items/protection/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
"cloudflare",
|
||||
"captcha"
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
},
|
||||
"headers": {
|
||||
"$id": "#root/sites/items/headers",
|
||||
"title": "Headers",
|
||||
"type": "object",
|
||||
"default": [],
|
||||
"items": {
|
||||
"$id": "#root/sites/items/headers/items",
|
||||
"title": "Items",
|
||||
"type": "string",
|
||||
"default": "",
|
||||
"examples": [
|
||||
{
|
||||
"accept": "text/html"
|
||||
}
|
||||
],
|
||||
"pattern": "^.*$"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
3724
wmn-data.json
3724
wmn-data.json
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user