@theintern/digdug
Version:
Dig Dug. A simple abstraction library for downloading and launching WebDriver service tunnels.
37 lines (32 loc) • 761 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://theintern.io/schemas/digdug/webdrivers-2.3.json",
"title": "Webdrivers",
"description": "Dig Dug 2.3 webdriver information schema",
"type": "object",
"properties": {
"drivers": {
"type": "object",
"patternProperties": {
".*": { "$ref": "#/definitions/webdriver" }
}
}
},
"definitions": {
"webdriver": {
"type": "object",
"properties": {
"baseUrl": { "type": "string" },
"latest": { "type": "string" },
"versions": {
"type": "object",
"patternProperties": {
".*": {
"url": { "type": "string" }
}
}
}
}
}
}
}