This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // MARK: VitalSign | |
| struct VitalSign:Codable { | |
| let id: String | |
| let resourceType:String | |
| let category:CodeableConcept | |
| let code:CodeableConcept | |
| let status:String | |
| let encounter:[String: String] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct Person:Codable { | |
| let display: String? | |
| let reference: String | |
| } | |
| struct CodeableConcept:Codable { | |
| let text:String | |
| let coding:[[String:String]] | |
| } |
OlderNewer