SERTICA Budgets API

The Budgets API from SERTICA — 9 operation(s) for budgets.

Operations 10

GET /Budgets Gets a list of Budgets #
POST /Budgets Creates a new Budget record #
GET /Budgets/{budgetNo} Gets a specific Budget #
DELETE /Budgets/{BudgetNo} Deletes a Budget record #
GET /Budgets/{budgetNo}/Responses Returns a list of Responses from the Budget #
GET /Budgets/{budgetNo}/Approvers Returns a list of Approvers from the Budget #
GET /Budgets/{budgetNo}/BudgetLines Returns a list of Budget Lines from the Budget #
POST /Budgets/search Search for Budgets Takes a SearchDefinition input, which can include filters… #
POST /Budgets/searchIndex/{budgetGuid} Get index of a record in a search for budgets Takes a SearchDefinition input… #
POST /Budgets/searchCount Returns number of hits in a search for Budgets Takes a SearchDefinition input… #

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-budgets-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-budgets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: SERTICA Web Budgets 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: Budgets
paths:
  /Budgets:
    get:
      tags:
      - Budgets
      summary: Gets a list of Budgets
      operationId: GetProcurementBudgets
      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.Budget.Budget'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
        '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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
    post:
      tags:
      - Budgets
      summary: Creates a new Budget record
      operationId: CreateBudget
      requestBody:
        description: The Budget Object, including reference lists
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
          application/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
          text/json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
          application/*+json:
            schema:
              $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
      responses:
        '201':
          description: Created
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
        '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'>ProcurementBudget_Update</td><td style='border-bottom:none'>Update</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Budgets/{budgetNo}:
    get:
      tags:
      - Budgets
      summary: Gets a specific Budget
      operationId: GetProcurementBudget
      parameters:
      - name: budgetNo
        in: path
        description: The BudgetNo to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the requested budget
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
        '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 budget with the supplied Budget 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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Budgets/{BudgetNo}:
    delete:
      tags:
      - Budgets
      summary: Deletes a Budget record
      parameters:
      - name: BudgetNo
        in: path
        description: The BudgetNo of the Budget 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'>ProcurementBudget_Delete</td><td style='border-bottom:none'>Delete</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
      operationId: deleteBudgetsByBudgetNo
      x-operation-id-source: derived
  /Budgets/{budgetNo}/Responses:
    get:
      tags:
      - Budgets
      summary: Returns a list of Responses from the Budget
      operationId: GetProcurementBudgetResponses
      parameters:
      - name: budgetNo
        in: path
        description: The BudgetNo to fetch reponses for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the responses for the budget
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetResponse'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetResponse'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetResponse'
        '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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Budgets/{budgetNo}/Approvers:
    get:
      tags:
      - Budgets
      summary: Returns a list of Approvers from the Budget
      operationId: GetProcurementBudgetApprovers
      parameters:
      - name: budgetNo
        in: path
        description: The BudgetNo to fetch approvers for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the approvers for the budget
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetApprover'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetApprover'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetApprover'
        '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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Budgets/{budgetNo}/BudgetLines:
    get:
      tags:
      - Budgets
      summary: Returns a list of Budget Lines from the Budget
      operationId: GetProcurementBudgetLines
      parameters:
      - name: budgetNo
        in: path
        description: The BudgetNo to fetch Budget Lines for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the Budget Lines for the budget
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetLine'
            application/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetLine'
            text/json:
              schema:
                $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetLine'
        '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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Budgets/search:
    post:
      tags:
      - Budgets
      summary: Search for Budgets Takes a SearchDefinition input, which can include filters…
      operationId: SearchBudgets
      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.Budget.Budget'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SerticaWebApi.Models.Budget.Budget'
        '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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Budgets/searchIndex/{budgetGuid}:
    post:
      tags:
      - Budgets
      summary: Get index of a record in a search for budgets Takes a SearchDefinition input…
      operationId: SearchIndexBudgets
      parameters:
      - name: budgetGuid
        in: path
        description: The budget 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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
  /Budgets/searchCount:
    post:
      tags:
      - Budgets
      summary: Returns number of hits in a search for Budgets Takes a SearchDefinition input…
      operationId: SearchCountBudgets
      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'>ProcurementBudget</td><td style='border-bottom:none'>View</td></tr></tbody></table><br/><br/>Customer must have one of these License values set<table><thead><tr><th>Key</th><th>Right</th></tr></thead><tbody><tr><td style='border-bottom:none;padding-right:5px'>BudgetModule</td></tr></tbody></table>
        '500':
          description: The api has encountered an unhandled exception. See Sertica logs for details
      security:
      - Bearer: []
components:
  schemas:
    Logihold.BusinessObjects.LogiholdObjModel.View.SortDirection:
      enum:
      - Asc
      - Desc
      type: string
    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.Search.SearchOperator:
      enum:
      - Equals
      - LessThan
      - GreaterThan
      - Like
      - Range
      - In
      - Dynamic
      - StartsWith
      - EndsWith
      - IsNull
      - NotLike
      - Or
      - NotEquals
      - NotIn
      type: string
    SerticaWebApi.Models.ErrorReason:
      type: object
      properties:
        text:
          type:
          - string
          - 'null'
        fieldName:
          type:
          - string
          - 'null'
      additionalProperties: false
    Logihold.BusinessObjects.LogiholdObjModel.Search.OrderBy:
      type: object
      properties:
        field:
          type:
          - string
          - 'null'
        direction:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.View.SortDirection'
      additionalProperties: false
    SerticaWebApi.Models.Budget.BudgetResponse:
      type: object
      properties:
        text:
          type:
          - string
          - 'null'
        createRoleNo:
          type:
          - string
          - 'null'
        createUserNo:
          type:
          - string
          - 'null'
        createUserName:
          type:
          - string
          - 'null'
        createDate:
          type:
          - string
          - 'null'
          format: date-time
        acknowledgedDate:
          type:
          - string
          - 'null'
          format: date-time
        recipientNo:
          type:
          - string
          - 'null'
        recipientName:
          type:
          - string
          - 'null'
        acknowledgedByNo:
          type:
          - string
          - 'null'
        acknowledgedByName:
          type:
          - string
          - 'null'
        budgetNo:
          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.Budget.BudgetApprover:
      type: object
      properties:
        approvalOrder:
          type:
          - string
          - 'null'
        status:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.SystemData_BudgetModuleApproverStatus'
        approverNo:
          type:
          - string
          - 'null'
        approverName:
          type:
          - string
          - 'null'
        budgetNo:
          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
    Logihold.BusinessObjects.LogiholdObjModel.Search.ForDeviceRequest:
      type: object
      properties:
        deviceGuid:
          type:
          - string
          - 'null'
          format: uuid
        requestIdGuid:
          type:
          - string
          - 'null'
          format: uuid
        fullSynchronization:
          type: boolean
        appType:
          type: integer
          format: int32
      additionalProperties: false
    SerticaWebApi.Models.Budget.Budget:
      type: object
      properties:
        budgetNo:
          type:
          - string
          - 'null'
        name:
          type:
          - string
          - 'null'
        status:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.SystemData_ProcurementBudgetStatus'
        budgetPeriodNo:
          type:
          - string
          - 'null'
        budgetPeriodName:
          type:
          - string
          - 'null'
        companyNo:
          type:
          - string
          - 'null'
        companyName:
          type:
          - string
          - 'null'
        budgetTemplateNo:
          type:
          - string
          - 'null'
        budgetTemplateName:
          type:
          - string
          - 'null'
        responsibleNo:
          type:
          - string
          - 'null'
        responsibleName:
          type:
          - string
          - 'null'
        unitLeadNo:
          type:
          - string
          - 'null'
        unitLeadName:
          type:
          - string
          - 'null'
        companyLeadNo:
          type:
          - string
          - 'null'
        companyLeadName:
          type:
          - string
          - 'null'
        monetaryUnit:
          type:
          - integer
          - 'null'
          format: int32
        budgetLines:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetLine'
        budgetApprovers:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetApprover'
        budgetResponses:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SerticaWebApi.Models.Budget.BudgetResponse'
        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.Link:
      type: object
      properties:
        key:
          type:
          - string
          - 'null'
        url:
          type:
          - string
          - 'null'
      additionalProperties: false
    Logihold.BusinessObjects.LogiholdObjModel.SystemData_ProcurementBudgetStatus:
      enum:
      - Draft
      - OfficePreparation
      - UnitPreparation
      - AwaitingApproval
      - Approved
      - Active
      - Retired
      type: string
    Logihold.BusinessObjects.LogiholdObjModel.Procurement.Amount:
      type: object
      properties:
        value:
          type:
          - number
          - 'null'
          format: double
        currencyNo:
          type:
          - string
          - 'null'
        rate:
          type:
          - number
          - 'null'
          format: double
        decimalPlaces:
          type: integer
          format: int32
      additionalProperties: false
    Logihold.BusinessObjects.LogiholdObjModel.Search.SearchDefinition:
      type: object
      properties:
        distinct:
          type: boolean
        subObjectsToInclude:
          type:
          - array
          - 'null'
          items:
            type: string
        contains:
          type:
          - array
          - 'null'
          items:
            type: string
        criteria:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.SearchCriteria'
        sorting:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.OrderBy'
        columns:
          type:
          - array
          - 'null'
          items:
            type: string
        forDeviceRequest:
          $ref: '#/components/schemas/Logihold.BusinessObjects.LogiholdObjModel.Search.ForDeviceRequest'
        unitFilter:
          type:
          - array
          - 'null'
          items:
            type: string
      additionalProperties: false
    SerticaWebApi.Models.Budget.BudgetLine:
      type: object
      properties:
        accountNo:
          type:
          - string
          - 'null'
        accountName:
          type:
          - string
          - 'null'
        technicalAccountNo:
          type:
          - string
          - 'null'
        technicalAccountName:
          type:
          - string
          - 'null'
        purchaseTypeNo:
          type:
          - string
          - 'null'
        purchaseTypeName:
          type:
          - string
          - 'null'
        departmentNo:
          type:
          - string
          - 'null'
        departmentName:
          type:
          - string
          - 'null'
        divisionNo:
          type:
          - string
          - 'null'
        divisionName:
          type:
          - string
          - 'null'
        icNo:
          type:
          - string
          - 'null'
        icName:
          type:
          - string
          - 'null'
        incidentNo:
          type:
          - string
          - 'null'
        incidentDescription:
          type:
          - string
          - 'null'
        marketProductNo:
          type:
          - string
          - 'null'
        marketProductName:
          type:
          - string
          - 'null'
        projectNo:
          type:
          - string
          - 'null'
        projectName:
          type:
          - string
          - 'null'
        projectCodeNo:
          type:
          - string
          - 'null'
        projectCodeName:
          type:
          - string
          - 'null'
        routeNo:
          type:
          - string
          - 'null'
        routeName:
          type:
          - string
          - 'null'
        sundryNo:
          type:
          - string
          - 'null'
        sundryName:
          type:
          - string
          - 'null'
        agentNo:
          type:
          - string
          - 'null'
        agentName:
          type:
          - string
          - 'null'
        areaSFINo:
          type:
          - string
          - 'null'
        areaSFIName:
          type:
          - string
          - 'null'
        subTypeNo:
          type:
          - string
          - 'null'
        subTypeName:
          type:
          - string
          - 'null'
        f

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