Trovate 2 soluzioni:
mixed types
nella mia rubrica In generale, potresti non volere tipi misti poiché aggiunge complessità e non c'è una buona ragione per considerarli misti nel mio caso.
Fondamentalmente invece di un tipo singolo , puoi utilizzare un elenco di tipi così:
bsonType: "double"
vs bsonType: [ "double", "int" ]
.
Questa funzione è documentata qui:$types .
myValidatorIs =
{ validator:
{ $jsonSchema :
{ bsonType: "object"
, required: [ "price" ]
, properties:
{ price:
{ bsonType: [ "double", "int" ] // add "int" in this array here
, description: "must be a double/float and is required"
}
}
}
}
, validationAction: "error"
, validationLevel: "strict"
};
const MongoType_Double = require('mongodb').Double;
myValidatorIs =
{ validator:
{ $jsonSchema :
{ bsonType: "object"
, required: [ "price" ]
, properties:
{ price:
{ bsonType: "double" // leave this as double
, description: "must be a double/float and is required"
}
}
}
}
, validationAction: "error"
, validationLevel: "strict"
};
// then use the MongoType_Double constructor like so:
db.collection("collection").insertOne({ price : MongoType_Double(4.0) }); // no errors..
Questo dovrebbe funzionare anche per tutti gli altri tipi come timestamp
e simili: