-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Maximilian Staab
committed
Aug 26, 2022
1 parent
b58df4e
commit 72700b4
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://raw.githubusercontent.com/xarf/schema-discussion/master/schemas/development/webcrawler.schema.json", | ||
"title": "XARF WEBCRAWLER", | ||
"description": "A format to report Web-Crawling events.", | ||
"allOf": [ | ||
{ | ||
"$ref": "xarf_shared.schema.json#/properties/XarfBase" | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"Report": { | ||
"allOf": [ | ||
{ | ||
"$ref": "xarf_shared.schema.json#/properties/IpAndUrlBasedReport" | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"ReportClass": { | ||
"type": "string", | ||
"enum": ["Activity"] | ||
}, | ||
"ReportType": { | ||
"type": "string", | ||
"enum": ["WebCrawler"] | ||
} | ||
} | ||
}, | ||
{ | ||
"$ref": "xarf_shared.schema.json#/properties/CommonProps" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
] | ||
} |