export declare const VALIDATION_TEMPLATE = "/**\n * This is a starter template for a schema validation rule for a collection.\n * More information on schema validation rules can be found at:\n * https://www.mongodb.com/docs/manual/core/schema-validation/\n */\n{\n $jsonSchema: {\n title: \"Library.books\",\n bsonType: \"object\",\n required: [\"fieldname1\", \"fieldname2\"],\n properties: {\n fieldname1: {\n bsonType: \"string\",\n description: \"Fieldname1 must be a string\",\n },\n fieldname2: {\n bsonType: \"int\",\n description: \"Fieldname2 must be an integer\",\n },\n arrayFieldName: {\n bsonType: \"array\",\n items: {\n bsonType: \"string\"\n },\n description: \"arrayFieldName must be an array of strings\"\n },\n }\n }\n}"; //# sourceMappingURL=validation-template.d.ts.map