{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "oid_types.json",
    "$defs": {
        "mib_oid": {
            "type": "string",
            "pattern": "^[A-Za-z][\\w-]+::[a-zA-Z][\\w-]*(\\.\"?\\w[\\w-]*\"?)*$"
        },
        "oid": {
            "oneOf": [
                {"$ref": "#/$defs/mib_oid"},
                {"type": "string", "pattern": "^\\.\\d+(\\.\\d+)+$"}
            ]
        }
    }
}
