first commit

This commit is contained in:
2025-04-22 10:56:56 +07:00
commit af123c091b
147 changed files with 778063 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
// model Country {
// id String @id @map("_id")
// name String @unique
// }
// model Address {
// id String @id @map("_id")
// name String @unique
// alt_name String?
// latitude Float?
// longitude Float?
// regencies Regency[]
// }
// type Regency {
// id String @map("_id")
// province_id String
// name String
// alt_name String?
// latitude Float?
// longitude Float?
// districts District[]
// }
// type District {
// id String @map("_id")
// regency_id String
// name String
// alt_name String?
// latitude Float?
// longitude Float?
// villages Village[]
// }
// type Village {
// id String @map("_id")
// district_id String
// name String
// }
// model Postal {
// id Int @id @map("_id")
// name String?
// postal Int[]
// }
+67
View File
@@ -0,0 +1,67 @@
// model Practitioner {
// id String @id @default(auto()) @map("_id") @db.ObjectId
// active Boolean @default(true)
// identifier Identifier[]
// // name HumanName[]
// // telecom ContactPoint[]
// birthDate DateTime?
// birthPlace String?
// // deceased Deceased?
// // address AddressType[]
// // communication BackboneElementCommunication[]
// }
// type Identifier {
// name String
// value String
// }
// type HumanName {
// use String @default("usual")
// text String?
// family String?
// given String[]
// prefix String[]
// suffix String[]
// period Period
// }
// type Period {
// start DateTime @default(now())
// end DateTime?
// }
// type ContactPoint {
// system String @default("phone")
// use String @default("home")
// value String
// period Period
// }
// type Deceased {
// deceasedBoolean Boolean?
// deceasedDateTime DateTime?
// }
// type AddressType {
// use String @default("home")
// type String @default("physical")
// text String?
// line String[]
// village String?
// district String?
// city String?
// state String?
// country String?
// postalCode String
// period Period
// }
// type BackboneElementCommunication {
// language CodeableConceptLanguage
// preferred Boolean?
// }
// type CodeableConceptLanguage {
// text String
// }
View File