Benchling Molecule Schema API

Defines the structure, field definitions, and configuration options for Molecule schemas.

Operations 14

POST /molecule-schema Create MoleculeSchema #
GET /molecule-schema/items List MoleculeSchema items #
GET /molecule-schema/{molecule_schema_id} Get MoleculeSchema by ID #
PATCH /molecule-schema/{molecule_schema_id} Update MoleculeSchema #
GET /molecule-schema/{molecule_schema_id}/field-definitions/items List SchemaFieldDefinition items #
GET /molecule-schema/{molecule_schema_id}/fieldsets/items List Fieldset items #
POST /molecule-schema/{molecule_schema_id}:apply-fieldset Apply a fieldset to the schema #
POST /molecule-schema/{molecule_schema_id}:set-field-definitions Set field definitions on the schema #
POST /molecule-schema:batch-create Batch create MoleculeSchema #
PATCH /molecule-schema:batch-update Batch update MoleculeSchema #
POST /molecule-schema:bulk-create Bulk create MoleculeSchema #
PATCH /molecule-schema:bulk-update Bulk update MoleculeSchema #
GET /tasks/molecule-schema/apply-fieldset/{task_id} Poll async task status #
GET /tasks/molecule-schema/set-field-definitions/{task_id} Poll async task status #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/benchling-moleculeschema-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

benchling-moleculeschema-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  title: Benchling Molecule Schema API
  version: 2.0.0
  description: Defines the structure, field definitions, and configuration options for Molecule schemas.
servers:
- url: /api/v3
security:
- oAuth: []
- basicApiKeyAuth: []
tags:
- description: Defines the structure, field definitions, and configuration options for Molecule schemas.
  name: MoleculeSchema
  x-bnch-organization: Benchling
paths:
  /molecule-schema:
    post:
      description: Create MoleculeSchema.
      operationId: MoleculeSchema.Create
      parameters:
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateMoleculeSchemaInput'
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoleculeSchema'
          description: Created
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Create MoleculeSchema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 4
  /molecule-schema/items:
    get:
      description: List MoleculeSchema items.
      operationId: MoleculeSchema.List
      parameters:
      - $ref: '#/components/parameters/archiveReason.anyOf'
      - $ref: '#/components/parameters/archived.anyOf'
      - $ref: '#/components/parameters/createdAt.gt'
      - $ref: '#/components/parameters/createdAt.gte'
      - $ref: '#/components/parameters/createdAt.lt'
      - $ref: '#/components/parameters/createdAt.lte'
      - $ref: '#/components/parameters/id.anyOf'
      - $ref: '#/components/parameters/modifiedAt.gt'
      - $ref: '#/components/parameters/modifiedAt.gte'
      - $ref: '#/components/parameters/modifiedAt.lt'
      - $ref: '#/components/parameters/modifiedAt.lte'
      - $ref: '#/components/parameters/name.anyOf'
      - $ref: '#/components/parameters/name.anyOf.caseSensitive'
      - $ref: '#/components/parameters/nextToken'
      - $ref: '#/components/parameters/omit'
      - $ref: '#/components/parameters/pageSize'
      - $ref: '#/components/parameters/returning'
      - description: 'Method by which to order results. Valid sorts are: createdAt (created time, oldest first) and modifiedAt (modified time, oldest first). Use :asc or :desc to specify ascending or descending order. Default is modifiedAt:desc.'
        in: query
        name: sort
        schema:
          default: modifiedAt:desc
          enum:
          - createdAt:asc
          - createdAt:desc
          - modifiedAt:asc
          - modifiedAt:desc
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoleculeSchemaPaginatedList'
          description: OK
          headers: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: List MoleculeSchema items
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 4
  /molecule-schema/{molecule_schema_id}:
    get:
      description: Get a single MoleculeSchema by ID.
      operationId: MoleculeSchema.Get
      parameters:
      - description: ID of the MoleculeSchema.
        in: path
        name: molecule_schema_id
        required: true
        schema:
          type: string
      - $ref: '#/components/parameters/returning'
      - $ref: '#/components/parameters/omit'
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoleculeSchema'
          description: OK
          headers: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Get MoleculeSchema by ID
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 5
    patch:
      description: Update MoleculeSchema.
      operationId: MoleculeSchema.Update
      parameters:
      - description: ID of the MoleculeSchema.
        in: path
        name: molecule_schema_id
        required: true
        schema:
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateMoleculeSchemaInput'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MoleculeSchema'
          description: OK
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Update MoleculeSchema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 4
  /molecule-schema/{molecule_schema_id}/field-definitions/items:
    get:
      description: List SchemaFieldDefinition items.
      operationId: MoleculeSchema.fieldDefinitions.List
      parameters:
      - description: ID of the MoleculeSchema.
        in: path
        name: molecule_schema_id
        required: true
        schema:
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SchemaFieldDefinitionUnpaginatedList'
          description: OK
          headers: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: List SchemaFieldDefinition items
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 4
  /molecule-schema/{molecule_schema_id}/fieldsets/items:
    get:
      description: List Fieldset items.
      operationId: MoleculeSchema.fieldsets.List
      parameters:
      - description: ID of the MoleculeSchema.
        in: path
        name: molecule_schema_id
        required: true
        schema:
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FieldsetUnpaginatedList'
          description: OK
          headers: {}
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: List Fieldset items
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 4
  /molecule-schema/{molecule_schema_id}:apply-fieldset:
    post:
      description: Apply a fieldset to the schema
      operationId: MoleculeSchema.ApplyFieldset
      parameters:
      - description: ID of the MoleculeSchema.
        in: path
        name: molecule_schema_id
        required: true
        schema:
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EntitySchemaApplyFieldsetInput'
      responses:
        '202':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskLink'
          description: Task started
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Apply a fieldset to the schema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 4
  /molecule-schema/{molecule_schema_id}:set-field-definitions:
    post:
      description: Set field definitions on the schema
      operationId: MoleculeSchema.SetFieldDefinitions
      parameters:
      - description: ID of the MoleculeSchema.
        in: path
        name: molecule_schema_id
        required: true
        schema:
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/MoleculeSchemaSetFieldDefinitionsInput'
      responses:
        '202':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskLink'
          description: Task started
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Set field definitions on the schema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 4
  /molecule-schema:batch-create:
    post:
      description: Batch create MoleculeSchema synchronously in one transaction. Maximum 25 items per request.
      operationId: MoleculeSchema.BatchCreate
      parameters:
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: false
              properties:
                items:
                  items:
                    $ref: '#/components/schemas/CreateMoleculeSchemaInput'
                  maxItems: 25
                  minItems: 1
                  type: array
              required:
              - items
              type: object
      responses:
        '201':
          content:
            application/json:
              schema:
                additionalProperties: false
                properties:
                  items:
                    items:
                      $ref: '#/components/schemas/MoleculeSchema'
                    type: array
                required:
                - items
                type: object
          description: Created
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Batch create MoleculeSchema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 3
  /molecule-schema:batch-update:
    patch:
      description: Batch update MoleculeSchema synchronously in one transaction. Maximum 25 items per request.
      operationId: MoleculeSchema.BatchUpdate
      parameters:
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              additionalProperties: false
              properties:
                items:
                  items:
                    $ref: '#/components/schemas/UpdateMoleculeSchemaInputWithPathParams'
                  maxItems: 25
                  minItems: 1
                  type: array
              required:
              - items
              type: object
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: false
                properties:
                  items:
                    items:
                      $ref: '#/components/schemas/MoleculeSchema'
                    type: array
                required:
                - items
                type: object
          description: OK
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Batch update MoleculeSchema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 3
  /molecule-schema:bulk-create:
    post:
      description: Bulk create MoleculeSchema.
      operationId: MoleculeSchema.BulkCreate
      parameters:
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkImport'
      responses:
        '202':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskLink'
          description: Task started
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Bulk create MoleculeSchema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 2
  /molecule-schema:bulk-update:
    patch:
      description: Bulk update MoleculeSchema.
      operationId: MoleculeSchema.BulkUpdate
      parameters:
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkImport'
      responses:
        '202':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AsyncTaskLink'
          description: Task started
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Bulk update MoleculeSchema
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 2
  /tasks/molecule-schema/apply-fieldset/{task_id}:
    get:
      description: Poll status for Apply a fieldset to the schema.
      operationId: MoleculeSchema.ApplyFieldset.Get
      parameters:
      - description: ID of the asynchronous task to poll.
        in: path
        name: task_id
        required: true
        schema:
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                  result:
                    oneOf:
                    - $ref: '#/components/schemas/EntitySchemaApplyFieldsetOutput'
                    - type: 'null'
                  status:
                    enum:
                    - NOT_STARTED
                    - IN_PROGRESS
                    - COMPLETED
                    - FAILED
                    type: string
                type: object
          description: OK
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Poll async task status
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 5
  /tasks/molecule-schema/set-field-definitions/{task_id}:
    get:
      description: Poll status for Set field definitions on the schema.
      operationId: MoleculeSchema.SetFieldDefinitions.Get
      parameters:
      - description: ID of the asynchronous task to poll.
        in: path
        name: task_id
        required: true
        schema:
          type: string
      - description: Set to true to access beta operations via /api/v3.
        in: header
        name: EARLY-ACCESS
        required: false
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                  result:
                    oneOf:
                    - $ref: '#/components/schemas/SchemaSetFieldDefinitionsOutput'
                    - type: 'null'
                  status:
                    enum:
                    - NOT_STARTED
                    - IN_PROGRESS
                    - COMPLETED
                    - FAILED
                    type: string
                type: object
          description: OK
        '400':
          $ref: '#/components/responses/BadRequest'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/TooManyRequests'
        '500':
          $ref: '#/components/responses/InternalServerError'
      summary: Poll async task status
      tags:
      - MoleculeSchema
      x-bnch-rate-limit-tier: 5
components:
  schemas:
    CustomEntitySchemaRef:
      properties:
        __typename:
          type: string
        id:
          format: api_id
          type: string
      type: object
    TextNameTemplatePartConfigurationInput:
      additionalProperties: false
      properties:
        text:
          type: string
      required:
      - text
      type: object
    MoleculeSchemaSetFieldDefinitionsInput:
      additionalProperties: false
      properties:
        fieldDefinitions:
          items:
            anyOf:
            - $ref: '#/components/schemas/CreateBooleanFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateDateFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateDateTimeFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateFloatFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateIntegerFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateLongTextFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateTextFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateAaSequenceLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateAntibodyLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateAssayRequestLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateAssayResultLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateAssayRunLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateBlobLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateCustomEntityLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateDnaOligoLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateDnaSequenceLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateDropdownLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateAnyEntityLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateEntryLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateEquipmentLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateFieldsetLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateMixtureLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateMoleculeLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateOligoConjugateLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateOligoDuplexLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateRnaSequenceLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateRnaOligoLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateStorableLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/CreateSystemCategoryLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateBooleanFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateDateFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateDateTimeFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateFloatFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateIntegerFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateLongTextFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateTextFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateAaSequenceLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateAntibodyLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateAssayRequestLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateAssayResultLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateAssayRunLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateBlobLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateCustomEntityLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateDnaOligoLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateDnaSequenceLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateDropdownLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateAnyEntityLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateEntryLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateEquipmentLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateFieldsetLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateMixtureLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateMoleculeLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateOligoConjugateLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateOligoDuplexLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateRnaSequenceLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateRnaOligoLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateStorableLinkFieldDefinitionInput'
            - $ref: '#/components/schemas/UpdateSystemCategoryLinkFieldDefinitionInput'
          type: array
      required:
      - fieldDefinitions
      type: object
    CreateDnaSequenceLinkFieldDefinitionInput:
      additionalProperties: false
      properties:
        description:
          type: string
        isMulti:
          type: boolean
        isParent:
          description: 'Means the link is from a child to a parent DNA sequence. Important for the registry''s lot-numbering

            functionality.'
          type: boolean
        isRequired:
          type: boolean
        linkDefinitionId:
          type:
          - 'null'
          - string
        name:
          type: string
        systemName:
          type: string
        type:
          enum:
          - DNA_SEQUENCE_LINK
          type: string
      required:
      - name
      - systemName
      - isRequired
      - type
      - isMulti
      - linkDefinitionId
      type: object
    CreateDateFieldDefinitionInput:
      additionalProperties: false
      properties:
        description:
          type: string
        isRequired:
          type: boolean
        name:
          type: string
        systemName:
          type: string
        type:
          enum:
          - DATE
          type: string
      required:
      - name
      - systemName
      - isRequired
      - type
      type: object
    ProteinFormatChainPosition:
      description: 'Defines each instance of a polypeptide chain within a `ProteinFormat`, specifying the chain type and

        its constituent domains. Each chain position has a unique ref identifier and lists the domain positions

        (see `ProteinFormatDomainPosition`) that compose it in order from N-terminus to C-terminus.

        For example, a heavy chain position might reference domain positions [VH, CH1, Hinge, CH2, CH3].'
      properties:
        __typename:
          type: string
        domainPositions:
          description: A list of all the domain positions that make up the chain position, in order
          items:
            $ref: '#/components/schemas/ProteinFormatDomainPosition'
          type: array
        ref:
          description: 'A unique identifier for a physical component (chain or domain) in a protein format.

            This is used to form a HELM reference that is used in the protein''s complex polymer structure.'
          type: integer
        type:
          description: Type of the chain.
          enum:
          - HEAVY
          - LIGHT
          - NONE
          - ALPHA
          - BETA
          - JOINING
          type: string
      type: object
    UpdateIntegerFieldDefinitionInput:
      additionalProperties: false
      properties:
        archiveReason:
          type: string
        archived:
          type: boolean
        description:
          type: string
        id:
          type: string
        isRequired:
          type: boolean
        name:
          type: string
        numericMax:
          type: number
        numericMin:
          type: number
        systemName:
          type: string
        type:
          enum:
          - INTEGER
          type: string
        unitId:
          type: string
      required:
      - id
      - name
      - systemName
      - isRequired
      - type
      type: object
    CreateFloatFieldDefinitionInput:
      additionalProperties: false
      properties:
        description:
          type: string
        displayPrecision:
          type: integer
        isRequired:
          type: boolean
        name:
          type: string
        numericMax:
          type: number
        numericMin:
          type: number
        systemName:
          type: string
        type:
          enum:
          - FLOAT
          type: string
        unitId:
          type: string
      required:
      - name
      - systemName
      - isRequired
      - type
      type: object
    CreateDnaOligoLinkFieldDefinitionInput:
      additionalProperties: false
      properties:
        description:
          type: string
        isMulti:
          type: boolean
        isParent:
          description: 'Means the link is from a child to a parent DNA Oligo. Important for the registry''s lot-numbering

            functionality.'
          type: boolean
        isRequired:
          type: boolean
        linkDefinitionId:
          type: string
        name:
          type: string
        systemName:
          type: string
        type:
          enum:
          - DNA_OLIGO_LINK
          type: string
      required:
      - name
      - systemName
      - isRequired
      - type
      - isMulti
      - linkDefinitionId
      type: object
    AssayRequestLinkFieldDefinition:
      description: A schema field definition for linking to assay requests.
      properties:
        __typename:
          type: string
        archiveReason:
          type:
          - 'null'
          - string
        archived:
          type: boolean
        createdAt:
          format: datetime
          type:
          - 'null'
          - string
        derivationType:
          enum:
          - DIRECT
          - COMPUTED
          - SNAPSHOT
          type: string
        description:
          type:
          - 'null'
          - string
        id:
          type: string
        isMulti:
          type: boolean
        isRequired:
          type: boolean
        modifiedAt:
          format: datetime
          type:
          - 'null'
          - string
        name:
          type: string
        systemName:
          type: string
      type: object
    UpdateEquipmentLinkFieldDefinitionInput:
      additionalProperties: false
      properties:
        archiveReason:
          type: string
        archived:
          type: boolean
        description:
          type: string
        id:
          type: string
        isMulti:
          type: boolean
        isParent:
          description: 'Means the link is from a child to a parent Equipment. Important for the registry''s lot-numbering

            functionality.'
          type: boolean
        isRequired:
          type: boolean
        linkDefinitionId:
          type:
          - 'null'
          - string
        name:
          type: string
        systemName:
          type: string
        type:
          enum:
          - EQUIPMENT_LINK
          type: string
      required:
      - id
      - name
      - systemName
      - isRequired
      - type
      - isMulti
      - linkDefinitionId
      type: object
    RunSchemaRef:
      properties:
        __typename:
          type: string
        id:
          format: api_id
          type: string
      type: object
    UpdateTextFieldDefinitionInput:
      additionalProperties: false
      properties:
        archiveReason:
          type: string
        archived:
          type: boolean
        description:
          type: string
        id:
          type: string
        isRequired:
         

# --- truncated at 32 KB (152 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/benchling/refs/heads/main/openapi/benchling-moleculeschema-api-openapi.yml