SERTICA Management System Browser API

The ManagementSystemBrowser API from SERTICA — 9 operation(s) for managementsystembrowser.

Operations 9

GET /ManagementSystemBrowser Gets a list of Management Systems the User has access to #
GET /ManagementSystemBrowser/{managementSystemNo} Get management system units #
GET /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/Sections Get management system browser root nodes #
GET /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/{sectionNo}/Children Get management system browser node children #
GET /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/Section/{sectionNo} Returns a management system browser tree structure from root to where the… #
GET /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/Document/{documentNo} Returns a management system browser tree structure from root to where the… #
GET /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/{documentNo} Returns the specified Management System Document, based on the chosen Unit and… #
GET /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/{documentNo}/pdf Returns the specified Management System Document's Preview File, based on the… #
GET /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/document/search Returns the a collection of Management System Documents, based on the chosen… #

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-managementsystembrowser-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-managementsystembrowser-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Management System Browser 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: ManagementSystemBrowser
paths:
  /ManagementSystemBrowser:
    get:
      tags:
      - ManagementSystemBrowser
      summary: Gets a list of Management Systems the User has access to
      operationId: GetManagementSystems
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystem'
        '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'>ManagementSystemBrowser</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: []
  /ManagementSystemBrowser/{managementSystemNo}:
    get:
      tags:
      - ManagementSystemBrowser
      operationId: GetManagementSystemUnits
      parameters:
      - name: managementSystemNo
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.UnitManagement.Unit'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.UnitManagement.Unit'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.UnitManagement.Unit'
        '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'
        '404':
          description: Not 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'>ManagementSystemBrowser</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 management system units
      x-summary-source: derived
  /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/Sections:
    get:
      tags:
      - ManagementSystemBrowser
      operationId: GetManagementSystemBrowserRootNodes
      parameters:
      - name: managementSystemNo
        in: path
        required: true
        schema:
          type: string
      - name: unitNo
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
        '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'
        '404':
          description: Not 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'>ManagementSystemBrowser</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 management system browser root nodes
      x-summary-source: derived
  /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/{sectionNo}/Children:
    get:
      tags:
      - ManagementSystemBrowser
      operationId: GetManagementSystemBrowserNodeChildren
      parameters:
      - name: managementSystemNo
        in: path
        required: true
        schema:
          type: string
      - name: unitNo
        in: path
        required: true
        schema:
          type: string
      - name: sectionNo
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
        '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'
        '404':
          description: Not 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'>ManagementSystemBrowser</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 management system browser node children
      x-summary-source: derived
  /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/Section/{sectionNo}:
    get:
      tags:
      - ManagementSystemBrowser
      summary: Returns a management system browser tree structure from root to where the…
      operationId: GetSectionInTree
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: sectionNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
        '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'>ManagementSystemBrowser</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: []
  /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/Document/{documentNo}:
    get:
      tags:
      - ManagementSystemBrowser
      summary: Returns a management system browser tree structure from root to where the…
      operationId: GetDocumentInTree
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: documentNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserTreeStructureNode'
        '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'>ManagementSystemBrowser</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: []
  /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/{documentNo}:
    get:
      tags:
      - ManagementSystemBrowser
      summary: Returns the specified Management System Document, based on the chosen Unit and…
      operationId: GetManagementSystemBrowserDocument
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: documentNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
        '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'
        '404':
          description: Not 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'>ManagementSystemBrowser</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: []
  /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/{documentNo}/pdf:
    get:
      tags:
      - ManagementSystemBrowser
      summary: Returns the specified Management System Document's Preview File, based on the…
      operationId: GetManagementSystemBrowserDocumentFile
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: documentNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: searchText
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
        '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'
        '404':
          description: Not 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'>ManagementSystemBrowser</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: []
  /ManagementSystemBrowser/{managementSystemNo}/{unitNo}/document/search:
    get:
      tags:
      - ManagementSystemBrowser
      summary: Returns the a collection of Management System Documents, based on the chosen…
      operationId: FullTextSearchManagementSystemBrowserDocuments
      parameters:
      - name: managementSystemNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: unitNo
        in: path
        description: ''
        required: true
        schema:
          type: string
      - name: searchText
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument'
        '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'
        '404':
          description: Not 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'>ManagementSystemBrowser</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: []
components:
  schemas:
    SerticaWebApi.Models.ManagementSystem.ManagementSystemAcknowledger:
      type: object
      properties:
        managementSystemNo:
          type:
          - string
          - 'null'
        acknowledgerNo:
          type:
          - string
          - 'null'
        acknowledgerName:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.CombinedUserRole2Type'
        sectionsAsString:
          type:
          - string
          - 'null'
        sections:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemAcknowledgerSection'
        guidForReferencedObject:
          type:
          - string
          - 'null'
          format: uuid
        guid:
          type:
          - string
          - 'null'
          format: uuid
        liveObjectGuid:
          type:
          - string
          - 'null'
          format: uuid
        unitGuid:
          type:
          - string
          - 'null'
          format: uuid
        deleted:
          type: boolean
        latestHistoryGuid:
          type:
          - string
          - 'null'
          format: uuid
        links:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Link'
          readOnly: true
      additionalProperties: false
    SerticaWebApi.Models.BrokenRule:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/SerticaWebApi.Models.BrokenRuleType'
        index:
          type:
          - integer
          - 'null'
          format: int32
        objectGuid:
          type:
          - string
          - 'null'
          format: uuid
        field:
          type:
          - string
          - 'null'
        field2:
          type:
          - string
          - 'null'
        field3:
          type:
          - string
          - 'null'
        description:
          type:
          - string
          - 'null'
      additionalProperties: false
    Logihold.BusinessObjects.LogiholdObjModel.SystemData_UnitForSale:
      enum:
      - 'No'
      - 'Yes'
      type: string
    SerticaWebApi.Models.ErrorReason:
      type: object
      properties:
        text:
          type:
          - string
          - 'null'
        fieldName:
          type:
          - string
          - 'null'
      additionalProperties: false
    SerticaWebApi.Models.ManagementSystem.ManagementSystemConfidentiality:
      type: object
      properties:
        managementSystemNo:
          type:
          - string
          - 'null'
        combinedUserRoleNo:
          type:
          - string
          - 'null'
        combinedUserRoleName:
          type:
          - string
          - 'null'
        type:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.CombinedUserRole2Type'
        guidForReferencedObject:
          type:
          - string
          - 'null'
          format: uuid
        guid:
          type:
          - string
          - 'null'
          format: uuid
        liveObjectGuid:
          type:
          - string
          - 'null'
          format: uuid
        unitGuid:
          type:
          - string
          - 'null'
          format: uuid
        deleted:
          type: boolean
        latestHistoryGuid:
          type:
          - string
          - 'null'
          format: uuid
        links:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Link'
          readOnly: true
      additionalProperties: false
    SerticaWebApi.Models.ManagementSystem.ManagementSystem:
      type: object
      properties:
        managementSystemNo:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        systemHeadLine:
          type:
          - string
          - 'null'
        documentCheckTitle:
          type:
          - string
          - 'null'
        startRevisionNo:
          type:
          - integer
          - 'null'
          format: int32
        recentUpdateDays:
          type:
          - integer
          - 'null'
          format: int32
        enforceConfidentiality:
          type:
          - boolean
          - 'null'
        localizationLanguageNo:
          type:
          - string
          - 'null'
        localizationLanguageName:
          type:
          - string
          - 'null'
        formTemplateNo:
          type:
          - string
          - 'null'
        formTemplateName:
          type:
          - string
          - 'null'
        useFixedApprovalFlow:
          type: boolean
        sourceNo:
          type:
          - string
          - 'null'
        sourceName:
          type:
          - string
          - 'null'
        criticalityNo:
          type:
          - string
          - 'null'
        criticalityName:
          type:
          - string
          - 'null'
        defaultPrinter:
          type:
          - string
          - 'null'
        pdfPath:
          type:
          - string
          - 'null'
        mainIndexTemplateNo:
          type:
          - string
          - 'null'
        mainIndexTemplateName:
          type:
          - string
          - 'null'
        mainIndexTopic:
          type:
          - string
          - 'null'
        minorChangeApproverNo:
          type:
          - string
          - 'null'
        minorChangeApproverName:
          type:
          - string
          - 'null'
        minorChangeApproverType:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.CombinedUserRole2Type'
        sectionIndexTemplateNo:
          type:
          - string
          - 'null'
        sectionIndexTemplateName:
          type:
          - string
          - 'null'
        sectionIndexTopic:
          type:
          - string
          - 'null'
        rocTemplateNo:
          type:
          - string
          - 'null'
        rocTemplateName:
          type:
          - string
          - 'null'
        frontPageCoverNo:
          type:
          - string
          - 'null'
        frontPageCoverName:
          type:
          - string
          - 'null'
        portraitTemplateNo:
          type:
          - string
          - 'null'
        portraitTemplateName:
          type:
          - string
          - 'null'
        landscapeTemplateNo:
          type:
          - string
          - 'null'
        landscapeTemplateName:
          type:
          - string
          - 'null'
        lockedByUserNo:
          type:
          - string
          - 'null'
        lockedByUserName:
          type:
          - string
          - 'null'
        lockedDate:
          type:
          - string
          - 'null'
          format: date-time
        availableForAI:
          type: boolean
        hasActiveTask:
          type: boolean
        approvers:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemApprover'
        confidentialities:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemConfidentiality'
        changeRequestUsers:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemChangeRequestUser'
        units:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemUnit'
        deletedUnits:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemDeletedUnit'
        acknowledgers:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.ManagementSystem.ManagementSystemAcknowledger'
        unitNo:
          type:
          - string
          - 'null'
        unitName:
          type:
          - string
          - 'null'
        updateUserNo:
          type:
          - string
          - 'null'
        updateUserName:
          type:
          - string
          - 'null'
        updateDate:
          type:
          - string
          - 'null'
          format: date-time
        createUserNo:
          type:
          - string
          - 'null'
        createUserName:
          type:
          - string
          - 'null'
        createDate:
          type:
          - string
          - 'null'
          format: date-time
        guid:
          type:
          - string
          - 'null'
          format: uuid
        liveObjectGuid:
          type:
          - string
          - 'null'
          format: uuid
        unitGuid:
          type:
          - string
          - 'null'
          format: uuid
        deleted:
          type: boolean
        latestHistoryGuid:
          type:
          - string
          - 'null'
          format: uuid
        links:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Link'
          readOnly: true
      additionalProperties: false
    SerticaWebApi.Models.UnitManagement.UnitCompany:
      type: object
      properties:
        unitNo:
          type:
          - string
          - 'null'
        unitName:
          type:
          - string
          - 'null'
        companyNo:
          type:
          - string
          - 'null'
        companyName:
          type:
          - string
          - 'null'
        standardText1No:
          type:
          - string
          - 'null'
        standardText1Text:
          type:
          - string
          - 'null'
        standardText2No:
          type:
          - string
          - 'null'
        standardText2Text:
          type:
          - string
          - 'null'
        standardText3No:
          type:
          - string
          - 'null'
        standardText3Text:
          type:
          - string
          - 'null'
        default:
          type:
          - boolean
          - 'null'
        externalReference1:
          type:
          - string
          - 'null'
        externalReference2:
          type:
          - string
          - 'null'
        externalReference3:
          type:
          - string
          - 'null'
        guidForReferencedObject:
          type:
          - string
          - 'null'
          format: uuid
        guid:
          type:
          - string
          - 'null'
          format: uuid
        liveObjectGuid:
          type:
          - string
          - 'null'
          format: uuid
        unitGuid:
          type:
          - string
          - 'null'
          format: uuid
        deleted:
          type: boolean
        latestHistoryGuid:
          type:
          - string
          - 'null'
          format: uuid
        links:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Link'
          readOnly: true
      additionalProperties: false
    SerticaWebApi.Models.ManagementSystem.ManagementSystemBrowserDocument:
      type: object
      properties:
        documentNo:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        revisionNo:
          type:
          - string
          - 'null'
        revisionDate:
          type:
          - string
          - 'null'
          format: date-time
        area:
          type:
          - string
          - 'null'
        reference:
          type:
          - string
          - 'null'
        documentFileNo:
          type:
          - string
          - 'null'
        previewFormat:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.DocumentPreview.PreviewFormat'
        wordsToHighlight:
          type:
          - string
          - 'null'
        isReadByCurrentUser:
          type:
          - boolean
          - 'null'
        id:
          type:
          - string
          - 'null'
        updateUserNo:
          type:
          - string
          - 'null'
        updateUserName:
          type:
          - string
          - 'null'
        updateDate:
          type:
          - string
          - 'null'
          format: date-time
        createUserNo:
          type:
          - string
          - 'null'
        createUserName:
          type:
          - string
          - 'null'
        createDate:
          type:
          - string
          - 'null'
          format: date-time
        guid:
          type:
          - string
          - 'null'
          format: uuid
        liveObjectGuid:
          type:
          - string
          - 'null'
          format: uuid
        unitGuid:
          type:
          - string
          - 'null'
          format: uuid
        deleted:
          type: boolean
        latestHistoryGuid:
          type:
 

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