Files
2025-07-01 12:42:28 +07:00

24 lines
1.5 KiB
Go

package condition
import _struct "api-poliklinik/pkg/models/struct"
type Condition struct {
ResourceType string `json:"resourceType" bson:"resourceType"`
ID string `json:"id" bson:"id"`
ClinicalStatus _struct.CodeableConcept `json:"clinicalStatus" bson:"clinicalStatus"`
VerificationStatus _struct.CodeableConcept `json:"verificationStatus" bson:"verificationStatus"`
Category []_struct.CodeableConcept `json:"category" bson:"category"`
Severity _struct.CodeableConcept `json:"severity" bson:"severity"`
Code _struct.CodeableConcept `json:"code" bson:"code"`
BodySite []_struct.CodeableConcept `json:"bodySite" bson:"bodySite"`
Subject _struct.Reference `json:"subject" bson:"subject"`
Encounter _struct.Reference `json:"encounter" bson:"encounter"`
Onset _struct.Onset `json:"onset" bson:"onset"`
Abatement _struct.Abatement `json:"abatement" bson:"abatement"`
RecordedDate string `json:"recordedDate" bson:"recordedDate"`
Participant []_struct.ConditionParticipant `json:"participant" bson:"participant"`
Stage []_struct.ConditionStage `json:"stage" bson:"stage"`
Evidence []_struct.ConditionEvidence `json:"evidence" bson:"evidence"`
Note []_struct.Note `json:"note" bson:"note"`
}