• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2    "$schema": "http://json-schema.org/draft-07/schema#",
3    "type": "object",
4    "required" : ["DriverProperties"],
5    "properties": {
6        "DriverProperties": {
7            "type": "object",
8            "properties": {
9                "CommonProperties": {
10                    "$ref": "example-ref.json#/definitions/DriverProperties"
11                }
12            },
13            "required": ["CommonProperties"],
14            "additionalProperties": false
15        }
16    },
17    "additionalProperties": false
18}