Signature

Description

A signature.

Properties

Property Description
created read-only

The date on which the entity was created.

id read-only

An entity identifier. It may be either an integer or a universally unique identifier (UUID) represented as a string.

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

publicId read-only

The public identifier for this signature (may be used in the portal website).

signaturePaths

The SVG paths that define this signature.

svgViewbox

The SVG viewbox that defines the dimensions of this signature.

type

The type of resource represented.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "A signature.",
  "properties": {
    "created": {
      "description": "The date on which the entity was created.",
      "format": "date-time",
      "readOnly": true,
      "title": "Entity Creation Date",
      "type": "string"
    },
    "id": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Id"
        },
        {
          "readOnly": true
        }
      ]
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "publicId": {
      "description": "The public identifier for this signature (may be used in the portal\nwebsite).",
      "pattern": "^[a-fA-F0-9]{32}$",
      "readOnly": true,
      "type": "string"
    },
    "signaturePaths": {
      "description": "The SVG paths that define this signature.",
      "type": "string"
    },
    "svgViewbox": {
      "description": "The SVG viewbox that defines the dimensions of this signature.",
      "type": "string"
    },
    "type": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Type"
        },
        {
          "enum": [
            "signature"
          ]
        }
      ]
    }
  },
  "title": "Signature",
  "type": "object"
}