{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "#Module",
    "description": "A software or hardware module. Such as an npm_module or java_library.",
    "type": "object",
    "allOf": [
        {
            "$ref": "#Entity"
        },
        {
            "properties": {
                "public": {
                    "description": "Indicates if this is a public module.",
                    "type": "boolean"
                }
            },
            "required": []
        }
    ]
}
