Class TBinary
Unit
bsFhir_r4b
Declaration
type TBinary = class(TResource)
Description
A resource that represents the data of a single raw artifact as digital content accessible in its native format. A Binary resource can contain any content, whether text, image, pdf, zip archive, etc. If the element is present, it must have either a @value, an @id, or extensions
Hierarchy
Overview
Methods
Properties
Description
Methods
|
constructor Create; override; |
|
Properties
|
property contentType : string read GetcontentType write SetcontentType; |
MimeType of the binary content represented as a standard MimeType (BCP 13).
|
|
property contentTypeElement : Tcode read GetcontentTypeElement write SetcontentTypeElement; |
|
|
property securityContext : TReference read GetsecurityContext write SetsecurityContext; |
This element identifies another resource that can be used as a proxy of the security sensitivity to use when deciding and enforcing access control rules for the Binary resource. Given that the Binary resource contains very few elements that can be used to determine the sensitivity of the data and relationships to individuals, the referenced resource stands in as a proxy equivalent for this purpose. This referenced resource may be related to the Binary (e.g. Media, DocumentReference), or may be some non-related Resource purely as a security proxy. E.g. to identify that the binary resource relates to a patient, and access should only be granted to applications that have access to the patient.
|
|
property data : string read Getdata write Setdata; |
The actual content, base64 encoded.
|
|
property dataElement : Tbase64Binary read GetdataElement write SetdataElement; |
|
Generated by PasDoc 0.15.0.
|