Return schema to manifest

This commit is contained in:
Paul Pfeister 2024-06-30 21:16:11 -04:00
parent 501cb3dce2
commit cc57469a65
No known key found for this signature in database
GPG key ID: 70D33A96CBD7A994
2 changed files with 4 additions and 3 deletions

View file

@ -1,4 +1,5 @@
{ {
"$schema": "data.schema.json",
"1337x": { "1337x": {
"errorMsg": [ "errorMsg": [
"<title>Error something went wrong.</title>", "<title>Error something went wrong.</title>",

View file

@ -1,7 +1,7 @@
{ {
"$schema": "https://json-schema.org/draft/2020-12/schema", "$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Sherlock Targets", "title": "Sherlock Target Manifest",
"description": "Social media target to probe for existence of usernames", "description": "Social media targets to probe for the existence of known usernames",
"type": "object", "type": "object",
"properties": { "properties": {
"$schema": { "type": "string" } "$schema": { "type": "string" }
@ -9,7 +9,7 @@
"patternProperties": { "patternProperties": {
"^(?!\\$).*?$": { "^(?!\\$).*?$": {
"type": "object", "type": "object",
"description": "User-friendly target name", "description": "Target name and associated information (key should be human readable name)",
"required": [ "url", "urlMain", "errorType", "username_claimed" ], "required": [ "url", "urlMain", "errorType", "username_claimed" ],
"properties": { "properties": {
"url": { "type": "string" }, "url": { "type": "string" },