Signature

open class Signature: Element

A digital Signature - XML DigSig, JWT, Graphical image of signature, etc..

A digital signature along with supporting context. The signature may be electronic/cryptographic in nature, or a graphical image representing a hand-written signature, or a signature process. Different signature approaches have different utilities.

  • A digital Signature - XML DigSig, JWT, Graphical image of signature, etc..

    A digital signature along with supporting context. The signature may be electronic/cryptographic in nature, or a graphical image representing a hand-written signature, or a signature process. Different signature approaches have different utilities.

    Declaration

    Swift

    override open class var resourceType: String
  • The actual signature content (XML DigSig. JWT, picture, etc.).

    Declaration

    Swift

    public var blob: Base64Binary?
  • The technical format of the signature.

    Declaration

    Swift

    public var contentType: FHIRString?
  • The party represented.

    Declaration

    Swift

    public var onBehalfOfReference: Reference?
  • The party represented.

    Declaration

    Swift

    public var onBehalfOfUri: FHIRURL?
  • Indication of the reason the entity signed the object(s).

    Declaration

    Swift

    public var type: [Coding]?
  • When the signature was created.

    Declaration

    Swift

    public var when: Instant?
  • Who signed.

    Declaration

    Swift

    public var whoReference: Reference?
  • Who signed.

    Declaration

    Swift

    public var whoUri: FHIRURL?
  • Convenience initializer, taking all required properties as arguments.

    Declaration

    Swift

    public convenience init(type: [Coding], when: Instant, who: Any)
  • Convenience initializer, taking all required properties as arguments.

    Declaration

    Swift

    override open func populate(from json: FHIRJSON, context instCtx: inout FHIRInstantiationContext)

    Parameters

    json

    The JSON element to use to populate the receiver

    context

    The instantiation context to use

  • Undocumented

    Declaration

    Swift

    open class Signature: Element