Signature

User signature.

HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud

Properties

Name Type Description
image object Optional. An image of the user's signature.
metadata object Optional. Metadata associated with the user's signature. For example, the user's name or the user's title.
signatureTime string Optional. Timestamp of the signature.
userId string Required. User's UUID provided by the client.
View JSON Schema on GitHub

JSON Schema

Signature.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Signature",
  "description": "User signature.",
  "properties": {
    "image": {
      "$ref": "#/components/schemas/Image",
      "description": "Optional. An image of the user's signature."
    },
    "metadata": {
      "additionalProperties": {
        "type": "string"
      },
      "description": "Optional. Metadata associated with the user's signature. For example, the user's name or the user's title.",
      "type": "object"
    },
    "signatureTime": {
      "description": "Optional. Timestamp of the signature.",
      "format": "google-datetime",
      "type": "string"
    },
    "userId": {
      "description": "Required. User's UUID provided by the client.",
      "type": "string"
    }
  },
  "type": "object"
}