complexorganizations / humans-database

❤️ A comprehensive, open-source platform aggregating detailed human profiles globally. Designed for universal access to structured human data.
Other
1 stars 1 forks source link

Extend to all database. #5

Open Prajwal-Koirala opened 6 months ago

Prajwal-Koirala commented 6 months ago
  1. Start with NYPD and extend to everyone and than app.
Prajwal-Koirala commented 5 months ago
{
  "people": [
    {
      "name": "John Doe",
      "dob": "09/01/2000",
      "contact": {
        "email": "johndoe@example.com",
        "phone": "1234567890"
      },
      "address": {
        "street": "123 Main St",
        "city": "Anytown",
        "state": "CA",
        "zip_code": "12345"
      },
      "identification": {
        "ssn": "123-45-6789",
        "passport_number": "123456789",
        "identity_number": "123456789"
      },
      "employment": {
        "company": "TechCorp",
        "position": "Software Engineer",
        "start_date": "01/01/2022"
      }
    },
    {
      "name": "Jane Doe",
      "dob": "09/01/2001",
      "contact": {
        "email": "janedoe@example.com",
        "phone": "0987654321"
      },
      "address": {
        "street": "456 Main St",
        "city": "Anytown",
        "state": "CA",
        "zip_code": "56789"
      },
      "identification": {
        "ssn": "987-65-4321",
        "passport_number": "987654321",
        "identity_number": "987654321"
      },
      "employment": {
        "company": "MediCare",
        "position": "Registered Nurse",
        "start_date": "03/15/2020"
      }
    },
    {
      "name": "Jack Doe",
      "dob": null,
      "contact": {
        "email": "jackdoe@example.com",
        "phone": null
      },
      "address": null,
      "identification": {
        "ssn": null,
        "passport_number": null,
        "identity_number": null
      },
      "employment": null
    },
    // Add more people as needed
  ]
}