github.com/alecthomas/jsonschema@v0.0.0-20220216202328-9eeeec9d044b/fixtures/test_yaml_and_json2.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "$ref": "#/definitions/TestYamlAndJson2",
     4    "definitions": {
     5      "TestYamlAndJson2": {
     6        "required": ["FirstName", "LastName", "age"],
     7        "properties": {
     8          "FirstName": {
     9            "type": "string",
    10            "description": "test2"
    11          },
    12          "LastName": {
    13            "type": "string",
    14            "description": "test3"
    15          },
    16          "age": {
    17            "type": "integer",
    18            "description": "test4"
    19          },
    20          "MiddleName": {
    21            "type": "string",
    22            "description": "test5"
    23          }
    24        },
    25        "additionalProperties": false,
    26        "type": "object"
    27      }
    28    }
    29  }