[ad_1]
please, help! I was created json schema for MongoDB. It’s look like:
{
"schemaType": "Collection",
"name": "Manufacturier",
"defaultValue": "",
"description": "...",
"fields": [
{
"schemaType": "Field",
"name": "_id",
"type": "ObjectId",
"required": true,
"unique": true,
"defaultValue": "",
"description": "...",
"index": 0,
"customProps": []
}
]
}
...
Can i import this schema into mongodb? And how (if it’s possible). Thanks!
[ad_2]