mirror of
https://github.com/sherlock-project/sherlock
synced 2024-11-22 03:43:02 +00:00
Merge branch '2207-specify-schema' into release/0.15.0-rc2
This commit is contained in:
commit
c5b25fa494
2 changed files with 4 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"$schema": "data.schema.json",
|
||||||
"1337x": {
|
"1337x": {
|
||||||
"errorMsg": [
|
"errorMsg": [
|
||||||
"<title>Error something went wrong.</title>",
|
"<title>Error something went wrong.</title>",
|
||||||
|
|
|
@ -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" },
|
||||||
|
|
Loading…
Reference in a new issue