class Google::Apis::HealthcareV1::FieldMetadata
Specifies FHIR paths to match, and how to handle de-identification of matching fields.
Attributes
Deidentify action for one field. Corresponds to the JSON property `action` @return [String]
List of paths to FHIR fields to be redacted. Each path is a period-separated list where each component is either a field name or FHIR type name, for example: Patient, HumanName. For “choice” types (those defined in the FHIR spec with the form: field) we use two separate components. For example, “ deceasedAge.unit” is matched by “Deceased.Age.unit”. Supported types are: AdministrativeGenderCode, Code, Date, DateTime, Decimal, HumanName, Id, LanguageCode, Markdown, Oid, String, Uri, Uuid, Xhtml. Base64Binary is also supported, but may only be kept as-is or have all the content removed. Corresponds to the JSON property `paths` @return [Array<String>]
Public Class Methods
# File lib/google/apis/healthcare_v1/classes.rb, line 1722 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/healthcare_v1/classes.rb, line 1727 def update!(**args) @action = args[:action] if args.key?(:action) @paths = args[:paths] if args.key?(:paths) end