Files
mongo/.test/store.json
2026-04-17 11:38:12 -04:00

36 lines
641 B
JSON

{
"_group": "system_collections",
"_name": "store",
"_version": "202507",
"singular": "store",
"plural": "stores",
"idPrefix": "str",
"indexSpecs": [{
"name": "code_1",
"keys": { "code": 1 },
"unique": true
}],
"schema": {
"type": "object",
"properties": {
"_id": {
"bsonType": "string"
},
"code": {
"bsonType": "string"
},
"name": {
"bsonType": "string"
},
"created_at": {
"bsonType": "date"
},
"updated_at": {
"bsonType": "date"
},
"archived_at": {
"bsonType": "date"
}
}
}
}