OBJECT

DigitalDocketTemplate

A digital docket template. Essentially a form template used to generate digital dockets

link GraphQL Schema definition

  • type DigitalDocketTemplate {
  • # The user that created this docket template.
  • created_by: User
  • # The date the template was created in UTC+0.
  • created_time: DateTime!
  • # The digital docket description (max 500 characters).
  • description: String
  • # The display metadata for the digital docket form.
  • display_meta: UntypedValue!
  • # Whether this template has digital dockets
  • has_digital_dockets: Boolean
  • # The unique digital docket template ID.
  • id: Int!
  • # True if the template is logically deleted.
  • # This will hide the template from dashboard and the mobile app.
  • is_archived: Boolean!
  • # Whether the digital docket template is published.
  • is_published: Boolean!
  • # The merge template information.
  • merge_template: MergeTemplate
  • # The user that last modified this docket template.
  • modified_by: User
  • # The date the template was last updated in UTC+0.
  • modified_time: DateTime
  • # True if the header client field is required in digital dockets generated by this
  • # template.
  • require_client: Boolean!
  • # True if the project client field is required in digital dockets generated by
  • # this template.
  • # Note that you cannot have a project without a client.
  • require_project: Boolean!
  • # True if the task field is required in digital dockets generated by this
  • # template.
  • require_task: Boolean!
  • # True if the supervisor field is required in digital dockets generated by this
  • # template.
  • require_supervisor: Boolean!
  • # True if the geolocation is required - (This is always defaulted to true on
  • # response).
  • require_geolocation: Boolean!
  • # True if the asset field is required in digital dockets generated by this
  • # template.
  • require_worker_asset: Boolean!
  • # True if the break time field is required in digital dockets generated by this
  • # template.
  • require_worker_break_time: Boolean!
  • # If this is set, it will dictate the position in lists that the template will
  • # appear.
  • sort_order: Int
  • # The digital docket's display title (max 150 characters).
  • title: String!
  • # List of tags that are allowed to see the template.
  • user_tags_permission: [Tag]
  • }