{
    "$schema": "http://json-schema.org/draft-07/schema",
    "$id": "http://example.com/example.json",
    "type": "object",
    "title": "The Metadata Schema",
    "description": "Schema for Metadata results from NVD as JSON.",
    "default": {},
    "examples": [
        {
            "lastModifiedDate": "2020-10-27T18:01:52-04:00",
            "size": 7680682,
            "zipSize": 527727,
            "gzSize": 527583,
            "sha256": "3B7EBF83BAF9435BCACE6B2C36BC20EAC62800F09EB8323BDCC62BC66DCC7D40"
        }
    ],
    "required": [
        "lastModifiedDate",
        "size",
        "zipSize",
        "gzSize",
        "sha256"
    ],
    "properties": {
        "lastModifiedDate": {
            "$id": "#/properties/lastModifiedDate",
            "type": "string",
            "title": "The lastModifiedDate schema",
            "description": "Contains a timestamp for the last time the specific database was updated.",
            "default": "",
            "examples": [
                "2020-10-27T18:01:52-04:00"
            ]
        },
        "size": {
            "$id": "#/properties/size",
            "type": "integer",
            "title": "The size schema",
            "description": "The uncompressed size of the specified database.",
            "default": 0,
            "examples": [
                7680682
            ]
        },
        "zipSize": {
            "$id": "#/properties/zipSize",
            "type": "integer",
            "title": "The zipSize schema",
            "description": "The zipped size of the specified database.",
            "default": 0,
            "examples": [
                527727
            ]
        },
        "gzSize": {
            "$id": "#/properties/gzSize",
            "type": "integer",
            "title": "The gzSize schema",
            "description": "The gzipped size of the specified database.",
            "default": 0,
            "examples": [
                527583
            ]
        },
        "sha256": {
            "$id": "#/prtuoperties/sha256",
            "type": "string",
            "title": "The sha256 schema",
            "description": "The sha256 signature of the specified database.",
            "default": "",
            "examples": [
                "3B7EBF83BAF9435BCACE6B2C36BC20EAC62800F09EB8323BDCC62BC66DCC7D40"
            ]
        }
    },
    "additionalProperties": false
}