Benchling · Schema

EntryTemplate

Entry templates are templates that users can base new notebook entries off of.

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
apiURL string The canonical url of the Entry Template in the API.
createdAt string DateTime the template was created at
creator object UserSummary Resource of the user who created the template
customFields object
days array Array of day objects. Each day object has a day index (integer) and notes field (array of notes, expand further for details on note types).
fields object
id string ID of the entry template
modifiedAt string DateTime the template was last modified
name string Title of the template
schema object Entry schema if set
templateCollectionId string ID of the collection that contains the template
webURL string URL of the template
View JSON Schema on GitHub

JSON Schema

EntryTemplate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/EntryTemplate.json",
  "title": "EntryTemplate",
  "additionalProperties": false,
  "description": "Entry templates are templates that users can base new notebook entries off of.\n",
  "properties": {
    "apiURL": {
      "description": "The canonical url of the Entry Template in the API.",
      "example": "https://benchling.com/api/v2/entry-templates/tmpl_tv7m7B78",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "createdAt": {
      "description": "DateTime the template was created at",
      "format": "date-time",
      "readOnly": true,
      "type": "string"
    },
    "creator": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserSummary"
        }
      ],
      "description": "UserSummary Resource of the user who created the template",
      "readOnly": true
    },
    "customFields": {
      "$ref": "#/components/schemas/CustomFields"
    },
    "days": {
      "description": "Array of day objects. Each day object has a day index (integer) and notes field (array of notes, expand further for details on note types).\n",
      "items": {
        "$ref": "#/components/schemas/EntryTemplateDay"
      },
      "type": "array"
    },
    "fields": {
      "$ref": "#/components/schemas/Fields"
    },
    "id": {
      "description": "ID of the entry template",
      "type": "string"
    },
    "modifiedAt": {
      "description": "DateTime the template was last modified",
      "type": "string"
    },
    "name": {
      "description": "Title of the template",
      "type": "string"
    },
    "schema": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EntrySchema"
        }
      ],
      "description": "Entry schema if set",
      "nullable": true,
      "title": "SchemaProperty",
      "type": "object"
    },
    "templateCollectionId": {
      "description": "ID of the collection that contains the template",
      "type": "string"
    },
    "webURL": {
      "description": "URL of the template",
      "type": "string"
    }
  },
  "type": "object"
}