SERTICA Form Template Tables API

The FormTemplateTables API from SERTICA — 9 operation(s) for formtemplatetables.

Operations 12

GET /FormTemplateTables Gets a list of Form Template Tables #
POST /FormTemplateTables Creates a new form template record #
GET /FormTemplateTables/{formTemplateTableNo} Gets a specific FormTemplateTable #
PUT /FormTemplateTables/{formTemplateTableNo} Updates an existing FormTemplateTable #
DELETE /FormTemplateTables/{formTemplateTableNo} Deletes a form template record #
GET /FormTemplateTables/{formTemplateTableNo}/history Gets history for a specific FormTemplateTable #
POST /FormTemplateTables/search Search for Form Template Tables Takes a SearchDefinition input, which can… #
POST /FormTemplateTables/searchIndex/{formTemplateGuid} Get index of a record in a search for form templates Takes a SearchDefinition… #
POST /FormTemplateTables/searchCount Returns number of hits in a search for Form Template Tables Takes a… #
GET /FormTemplateTables/searchInfo Returns structured information about what and how you can search for #
GET /FormTemplateTables/{formTemplateTableNo}/copy Copies an existing FormTemplateTable to a new object #
GET /FormTemplateTables/availableTags/{columnType} Get form template tables available tags by column type #

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/sertica-formtemplatetables-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

sertica-formtemplatetables-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Form Template Tables API
  description: 'Online API browser for SERTICA Web API.


    Be aware that some endpoints are restricted by license or user rights and may not be available in your environment.


    Each endpoint includes a description of the required license and user rights.'
  version: v1
servers:
- url: /api
tags:
- name: FormTemplateTables
paths:
  /FormTemplateTables:
    get:
      tags:
      - FormTemplateTables
      summary: Gets a list of Form Template Tables
      operationId: GetFormTemplateTables
      parameters:
      - name: page
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 25
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    post:
      tags:
      - FormTemplateTables
      summary: Creates a new form template record
      operationId: CreateFormTemplateTable
      requestBody:
        description: The Form Template Table Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable_Update</td><td style='border-bottom:none'>Update</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /FormTemplateTables/{formTemplateTableNo}:
    get:
      tags:
      - FormTemplateTables
      summary: Gets a specific FormTemplateTable
      operationId: GetFormTemplateTable
      parameters:
      - name: formTemplateTableNo
        in: path
        description: The FormTemplateTableNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested form template
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
        '400':
          description: Returns a validation result with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: If a form template with the supplied Form Template Table No cannot be found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    put:
      tags:
      - FormTemplateTables
      summary: Updates an existing FormTemplateTable
      operationId: UpdateFormTemplateTable
      parameters:
      - name: formTemplateTableNo
        in: path
        description: The FormTemplateTableNo of the form template to update
        required: true
        schema:
          type: string
      requestBody:
        description: The Form Template Table DTO object with the fields to update
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
      responses:
        '200':
          description: Returns the updated FormTemplateTable object
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
        '400':
          description: Returns a ValidationResult with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable_Update</td><td style='border-bottom:none'>Update</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    delete:
      tags:
      - FormTemplateTables
      summary: Deletes a form template record
      parameters:
      - name: formTemplateTableNo
        in: path
        description: The FormTemplateTableNo of the FormTemplateTable to delete
        required: true
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '400':
          description: Bad Request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable_Delete</td><td style='border-bottom:none'>Delete</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
      operationId: deleteFormTemplateTablesByFormTemplateTableNo
      x-operation-id-source: derived
  /FormTemplateTables/{formTemplateTableNo}/history:
    get:
      tags:
      - FormTemplateTables
      summary: Gets history for a specific FormTemplateTable
      operationId: GetFormTemplateTableHistory
      parameters:
      - name: formTemplateTableNo
        in: path
        description: The FormTemplateTableNo to get
        required: true
        schema:
          type: string
      - name: page
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: ''
        schema:
          type: integer
          format: int32
          default: 5
      responses:
        '200':
          description: Returns the requested form template
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
        '400':
          description: Returns a validation result with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '404':
          description: If a  form template with the supplied Form Template Table No cannot be found
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable_HistoryMode</td><td style='border-bottom:none'>HistoryMode</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /FormTemplateTables/search:
    post:
      tags:
      - FormTemplateTables
      summary: Search for Form Template Tables Takes a SearchDefinition input, which can…
      operationId: SearchFormTemplateTables
      parameters:
      - name: page
        in: query
        description: Page
        schema:
          type: integer
          format: int32
          default: 1
      - name: pageSize
        in: query
        description: Pagesize
        schema:
          type: integer
          format: int32
          default: 25
      requestBody:
        description: The search definition
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          text/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /FormTemplateTables/searchIndex/{formTemplateGuid}:
    post:
      tags:
      - FormTemplateTables
      summary: Get index of a record in a search for form templates Takes a SearchDefinition…
      operationId: SearchIndexFormTemplateTables
      parameters:
      - name: formTemplateGuid
        in: path
        description: The form template to get index for
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        description: The search definition
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          text/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /FormTemplateTables/searchCount:
    post:
      tags:
      - FormTemplateTables
      summary: Returns number of hits in a search for Form Template Tables Takes a…
      operationId: SearchCountFormTemplateTables
      requestBody:
        description: The search definition
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          text/json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
          application/*+json:
            schema:
              $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: integer
                format: int32
            application/json:
              schema:
                type: integer
                format: int32
            text/json:
              schema:
                type: integer
                format: int32
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /FormTemplateTables/searchInfo:
    get:
      tags:
      - FormTemplateTables
      summary: Returns structured information about what and how you can search for
      operationId: SearchInfoFormTemplateTables
      responses:
        '200':
          description: Returns a list of valid search fields
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchInfo'
            application/json:
              schema:
                $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchInfo'
            text/json:
              schema:
                $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchInfo'
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
  /FormTemplateTables/{formTemplateTableNo}/copy:
    get:
      tags:
      - FormTemplateTables
      summary: Copies an existing FormTemplateTable to a new object
      operationId: CopyFormTemplateTable
      parameters:
      - name: formTemplateTableNo
        in: path
        description: The FormTemplateTableNo of the formTemplate to copy
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the new FormTemplateTable object with properties from original
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Form.FormTemplateTable'
        '400':
          description: Returns a ValidationResult with information about the bad request
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ValidationResult'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable_Update</td><td style='border-bottom:none'>Update</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /FormTemplateTables/availableTags/{columnType}:
    get:
      tags:
      - FormTemplateTables
      parameters:
      - name: columnType
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.SystemData_FormTemplateTableColumnSetupDataType'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.WordFields'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.WordFields'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.WordFields'
        '401':
          description: If user is unauthorized
        '403':
          description: User must have one of these User Rights</br><table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>FormTemplateTable</td><td style='border-bottom:none'>View</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
      summary: Get form template tables available tags by column type
      x-summary-source: derived
      operationId: getFormTemplateTablesAvailableTagsByColumnType
      x-operation-id-source: derived
components:
  schemas:
    Logihold.BusinessObjects.LogiholdObjModel.View.SortDirection:
      enum:
      - Asc
      - Desc
      type: string
    Logihold.BusinessObjects.LogiholdObjModel.ListOfValueTemplateValuesJSON:
      type: object
      properties:
        value:
          type:
          - integer
          - 'null'
          format: int32
        text:
          type:
          - string
          - 'null'
      additionalProperties: false
    Logihold.BusinessObjects.LogiholdObjModel.WordFields:
      enum:
      - Subject
      - EventReportUnitLead
      - EventReportCompanyLead
      - FormRemarks
      - UnitNo
      - UnitName
      - UnitImoNo
      - UnitVesselTypeName
      - UnitCallSign
      - UnitGrossTonage
      - UnitHomePort
      - UnitManager
      - UnitFlagName
      - UnitClassName
      - UnitMMSI
      - UnitNetTonnage
      - UnitDeadweight
      - UnitOfficialNumber
      - UnitClassId
      - UnitSatCNo
      - UnitSatTelephoneNo
      - UnitSatFaxNo
      - UnitEmail
      - UnitYard
      - UnitYardNo
      - UnitKeelLaid
      - UnitBuiltDate
      - FormReportNo
      - FormReportDate
      - FormStatus
      - FormReportedBy
      - FormTitleOfReportedUser
      - FormTemplateNo
      - FormTemplateName
      - FormTemplateRevisionNo
      - FormTemplateRevisionDate
      - LatestChangeRequestCreateUserNo
      - LatestChangeRequestCreateUserName
      - LatestChangeRequestApprover1UserNo
      - LatestChangeRequestApprover1UserName
      - LatestChangeRequestApprover2UserNo
      - LatestChangeRequestApprover2UserName
      - FormCreatedDate
      - FormTemplateDocumentUpdateUser
      - FormTemplateReference
      - FormApproverNo1
      - FormApproverName1
      - FormApproverUpdateDate1
      - FormApproverUpdateUserNo1
      - FormApproverUpdateUserName1
      - FormApproverUpdateUserTitle1
      - FormApproverStatus1
      - FormApproverNo2
      - FormApproverName2
      - FormApproverUpdateDate2
      - FormApproverUpdateUserNo2
      - FormApproverUpdateUserName2
      - FormApproverUpdateUserTitle2
      - FormApproverStatus2
      - FormApproverNo3
      - FormApproverName3
      - FormApproverUpdateDate3
      - FormApproverUpdateUserNo3
      - FormApproverUpdateUserName3
      - FormApproverUpdateUserTitle3
      - FormApproverStatus3
      - FormApproverNo4
      - FormApproverName4
      - FormApproverUpdateDate4
      - FormApproverUpdateUserNo4
      - FormApproverUpdateUserName4
      - FormApproverUpdateUserTitle4
      - FormApproverStatus4
      - FormApproverNo5
      - FormApproverName5
      - FormApproverUpdateDate5
      - FormApproverUpdateUserNo5
      - FormApproverUpdateUserName5
      - FormApproverUpdateUserTitle5
      - FormApproverStatus5
      - CustomFieldText1
      - CustomFieldText2
      - CustomFieldText3
      - CustomFieldText4
      - CustomFieldText5
      - CustomFieldText6
      - CustomFieldText7
      - CustomFieldText8
      - CustomFieldText9
      - CustomFieldText10
      - CustomFieldNumeric1
      - CustomFieldNumeric2
      - CustomFieldNumeric3
      - CustomFieldNumeric4
      - CustomFieldNumeric5
      - CustomFieldNumeric6
      - CustomFieldNumeric7
      - CustomFieldNumeric8
      - CustomFieldNumeric9
      - CustomFieldNumeric10
      - CustomFieldNumeric11
      - CustomFieldNumeric12
      - CustomFieldNumeric13
      - CustomFieldNumeric14
      - CustomFieldNumeric15
      - CustomFieldNumeric16
      - CustomFieldNumeric17
      - CustomFieldNumeric18
      - CustomFieldNumeric19
      - CustomFieldNumeric20
      - CustomFieldDateTime1
      - CustomFieldDateTime2
      - CustomFieldDateTime3
      - CustomFieldDateTime4
      - CustomFieldDateTime5
      - CustomFieldDateTime6
      - CustomFieldDateTime7
      - CustomFieldDateTime8
      - CustomFieldDateTime9
      - CustomFieldDateTime10
      - CustomFieldCheckbox1
      - CustomFieldCheckbox2
      - CustomFieldCheckbox3
      - CustomFieldCheckbox4
      - CustomFieldCheckbox5
      - CustomFieldCheckbox6
      - CustomFieldCheckbox7
      - CustomFieldCheckbox8
      - CustomFieldCheckbox9
      - CustomFieldCheckbox10
      - CustomFieldMultilineText1
      - CustomFieldMultilineText2
      - CustomFieldMultilineText3
      - CustomFieldMultilineText4
      - CustomFieldMultilineText5
      - CustomFieldMultilineText6
      - CustomFieldMultilineText7
      - CustomFieldMultilineText8
      - CustomFieldMultilineText9
      - CustomFieldMultilineText10
      - CustomFieldMultilineText11
      - CustomFieldMultilineText12
      - CustomFieldMultilineText13
      - CustomFieldMultilineText14
      - CustomFieldMultilineText15
      - EventReportNo
      - EventReportType
      - EventReportEventDepartment
      - EventReportDateTimeOfEvent
      - EventReportResponsible
      - EventReportStatus
      - EventReportDueDate
      - EventReportOriginalDueDate
      - EventReportProgressInitiated
      - EventReportCompletedClosed
      - EventReportPostponedDate
      - EventReportPostponedStatus
      - EventReportExpectedCompleteDate
      - EventReportGroundsReason
      - EventReportGrounds
      - EventReportEnforceConfidentiality
      - EventReportResponseLog
      - EventReportDocuments
      - EventReportDescriptionOfEvent
      - EventReportImmediateCause
      - EventReportCorrectiveAction
      - EventReportCorrectiveActionText
      - EventReportPreventativeMeasures
      - EventReportPreventativeMeasuresText
      - EventReportCorrectionText
      - EventReportInitialComments
      - EventReportSubsequentComments
      - EventReportRiskIndex
      - EventReportDetained
      - EventReportConventionRef
      - EventReportGroupCode
      - EventReportActionCode
      - EventReportStandardReference
      - EventReportActivityOfTheUnit
      - EventReportActivityOfThePerson
      - EventReportLocation
      - EventReportPositionRank
      - EventReportHumanManning
      - EventReportWorkingEnvoirment
      - EventReportExternalEnvoirment
      - EventReportTechnical
      - EventReportEventHeading
      - EventReportMechanism
      - EventReportContact
      - EventReportIndividual
      - EventReportEnvoirment
      - EventReportUnit
      - EventReportThridParty
      - EventReportWeatherConditions
      - EventReportWindForce
      - EventReportWindDirection
      - EventReportSeaState
      - EventReportOther
      - EventReportManagement
      - CauseAnalysisText
      - EventReportISMRelatedDeficiency
      - EventReportCeforMainEventCode
      - EventReportCeforMainCasualtyCode
      - EventReportCeforCauseCode
      - EventReportGrossEstimate
      - EventReportOwnRetention
      - EventReportNetClaimToInsurance
      - EventReportReserve
      - EventReportPaid
      - EventReportActualRepairCosts
      - EventReportOtherCosts
      - EventReportTotalCosts
      - EventReportOwnersCost
      - EventReportSuperintendentActualRepairCosts
      - EventReportEstimatedRepairCost
      - EventReportActualRepairCost
      - EventReportEstimatedOffHireDays
      - EventReportActualOffHireDays
      - EventReportCeforCodesValidated
      - EventReportFinancialFiguresEstimated
      - EventReportLessonsLearnedDistributed
      - EventReportIdentifiedArea
      - EventReportProbRecurrenceRate
      - EventReportSeverity
      - ActivityManagementNo
      - ActivityManagementTitle
      - ActivityManagementType
      - ActivityManagementConfirmedStartDate
      - ActivityManagementConfirmedEndDate
      - ActivityManagementCompletedDate
      - ActivityManagementSurveyOrganization
      - ActivityManagementPlaceOfInspection
      - ActivityManagementSurveyors
      - ActivityManagementSendRectRepTo
      - BunkeringPortName
      - BargeName
      - VesselStandbyForBunkersDate
      - VoyageNo
      - ManagementSystemROCRevisionDate
      - ManagementSystemROCRevisionNo
      - ManagementSystemNo
      - ManagementSystemTitle
      - ManagementSystemHeadLine
      - ManagementSystemCheckTitle
      - ManagementSystemChangeRequestRequestedDate
      - ManagementSystemChangeRequestNo
      - ManagementSystemChangeRequestRequestedByNo
      - ManagementSystemChangeRequestRequestedByName
      - ManagementSystemChangeRequestSourceNo
      - ManagementSystemChangeRequestSourceName
      - ManagementSystemChangeRequestCriticalityNo
      - ManagementSystemChangeRequestCriticalityName
      - ManagementSystemChangeRequestDescription
      - JobNo
      - JobName
      - JobDescription
      - JobComponentNo
      - JobComponentName
      - EventPictureTable
      - ActivityPictureTable
      - FormLargestResidualRisk
      - FormRiskNo
      - FormRiskName
      - FormRiskDescription
      - FormRiskAreaNo
      - FormRiskAreaName
      - FormRiskRecurrencyBeforeNo
      - FormRiskRecurrencyBeforeName
      - FormRiskSeverityBeforeNo
      - FormRiskSeverityBeforeName
      - FormRiskIndexBefore
      - FormRiskControls
      - FormRiskRecurrencyAfterNo
      - FormRiskRecurrencyAfterName
      - FormRiskSeverityAfterNo
      - FormRiskSeverityAfterN

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