[MongoDB] 2장 MongoDB JSON 형식의 데이터 구조
1. MongoDB Document 구조MongoDB Document를 JSON 형식으로 구성하고, 이를 MongoDB에 삽입하는 방법으로 파일은 .json 파일로 구성됩니다.{ "_id": "5f5b3b3b3b3b3b3b3b3b3b3b", "name": "Alice", "age": 25, "email": "alice@example.com", "isActive": true, "createdAt": "2025-03-02T08:00:00Z", "tags": ["developer", "blogger"], "address": { "street": "1232 Main St", "city": "Springfield", "state": "CA", "zip": "90001" }}2..