From cc57469a65285938c4cdc9ae2b1c6c99c771eac2 Mon Sep 17 00:00:00 2001 From: Paul Pfeister Date: Sun, 30 Jun 2024 21:16:11 -0400 Subject: [PATCH] Return schema to manifest --- sherlock/resources/data.json | 1 + sherlock/resources/data.schema.json | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/sherlock/resources/data.json b/sherlock/resources/data.json index 7931f0dc3..1c7901e77 100644 --- a/sherlock/resources/data.json +++ b/sherlock/resources/data.json @@ -1,4 +1,5 @@ { + "$schema": "data.schema.json", "1337x": { "errorMsg": [ "Error something went wrong.", diff --git a/sherlock/resources/data.schema.json b/sherlock/resources/data.schema.json index 4453500c0..216ffb62c 100644 --- a/sherlock/resources/data.schema.json +++ b/sherlock/resources/data.schema.json @@ -1,7 +1,7 @@ { "$schema": "https://json-schema.org/draft/2020-12/schema", - "title": "Sherlock Targets", - "description": "Social media target to probe for existence of usernames", + "title": "Sherlock Target Manifest", + "description": "Social media targets to probe for the existence of known usernames", "type": "object", "properties": { "$schema": { "type": "string" } @@ -9,7 +9,7 @@ "patternProperties": { "^(?!\\$).*?$": { "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" ], "properties": { "url": { "type": "string" },