You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
2.9 KiB
166 lines
2.9 KiB
{
|
|
"title": "Wappalyzer Schema",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["categories","apps"],
|
|
"properties": {
|
|
"$schema": {
|
|
"type": "string"
|
|
},
|
|
"categories": {
|
|
"type": "object",
|
|
"minProperties": 64,
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^[0-9]+$": {
|
|
"type": "object",
|
|
"properties": {
|
|
"priority": {
|
|
"type": "number"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"apps": {
|
|
"type": "object",
|
|
"additionalProperties": {
|
|
"additionalProperties": false,
|
|
"required": ["cats","website"],
|
|
"properties": {
|
|
"cats": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "number"
|
|
},
|
|
"minItems": 1
|
|
},
|
|
"cpe": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
},
|
|
"cookies": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^.+$": {
|
|
},
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"js": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^.+$": {
|
|
},
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"headers": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^.+$": {
|
|
},
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"html": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
},
|
|
{
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
]
|
|
},
|
|
"excludes": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
},
|
|
{
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
]
|
|
},
|
|
"implies": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
},
|
|
{
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
]
|
|
},
|
|
"meta": {
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"patternProperties": {
|
|
"^.+$": {
|
|
},
|
|
"additionalProperties": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
},
|
|
"script": {
|
|
"oneOf": [
|
|
{
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
},
|
|
{
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
]
|
|
},
|
|
"url": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
},
|
|
"website": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
},
|
|
"icon": {
|
|
"type": "string",
|
|
"pattern": "^(?!\\s*$).+"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|