Appfire Settings API

The Settings API from Appfire — 16 operation(s) for settings.

Operations 19

GET /api/v1/settings/accountSettings/jiraNotifications Returns Jira notifications settings.
PUT /api/v1/settings/accountSettings/jiraNotifications Enables or disables Jira notifications
GET /api/v1/settings/customFields Get account settings
POST /api/v1/settings/customFields/dropdown Create a dropdown custom field
PUT /api/v1/settings/customFields/dropdown/{customFieldId} Update a dropdown custom field
POST /api/v1/settings/customFields/toggle Create a toggle custom field
PUT /api/v1/settings/customFields/toggle/{customFieldId} Update a toggle custom field
DELETE /api/v1/settings/customFields/{customFieldId} Delete a custom field
GET /api/v2/settings/accountSettings/jiraNotifications Returns Jira notifications settings.
PUT /api/v2/settings/accountSettings/jiraNotifications Enables or disables Jira notifications
GET /api/v2/settings/customFields Get account settings
POST /api/v2/settings/customFields/dropdown Create a dropdown custom field
PUT /api/v2/settings/customFields/dropdown/{customFieldId} Update a dropdown custom field
POST /api/v2/settings/customFields/toggle Create a toggle custom field
PUT /api/v2/settings/customFields/toggle/{customFieldId} Update a toggle custom field
DELETE /api/v2/settings/customFields/{customFieldId} Delete a custom field
POST /api/v2/settings/customFields/settings Create a custom fields setting
PUT /api/v2/settings/customFields/settings/{settingId} Update a custom fields setting
DELETE /api/v2/settings/customFields/settings/{settingId} Delete a custom fields setting

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/appfire-settings-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

appfire-settings-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Appfire Settings API
  version: '1.0'
  description: 'Operations tagged Settings across 2 of this provider''s published API definitions: appfire-7pace-timetracker-v1-openapi-original.yml, appfire-7pace-timetracker-v2-openapi-original.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: /
  description: Production API
security:
- bearer: []
tags:
- name: Settings
paths:
  /api/v1/settings/accountSettings/jiraNotifications:
    servers:
    - url: /
      description: Production API
    get:
      summary: Returns Jira notifications settings.
      description: 'Returns Jira notifications settings.


        Notifications are sent in Jira due to 7pace Timetracker exporting worklogs to Jira-native time tracking. Notifications are sent for the following operations: create, update, or delete worklog.

        '
      responses:
        '200':
          description: Jira notifications setting returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JiraNotificationsSettingsResponse'
      tags:
      - Settings
    put:
      summary: Enables or disables Jira notifications
      description: 'Enables or disables Jira notifications. It may take a couple of minutes for a configuration change to fully take effect.


        Notifications are sent in Jira due to 7pace Timetracker exporting worklogs to Jira-native time tracking. Notifications are sent for the following operations: create, update, or delete worklog.

        '
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JiraNotificationsSettingsRequest'
      responses:
        '200':
          description: Jira notifications setting updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JiraNotificationsSettingsResponse'
      tags:
      - Settings
  /api/v1/settings/customFields:
    servers:
    - url: /
      description: Production API
    get:
      summary: Get account settings
      description: Returns the custom fields settings for the current account.
      responses:
        '200':
          description: Account settings data
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      customFields:
                        type: object
                        $ref: '#/components/schemas/AccountSettings'
      tags:
      - Settings
  /api/v1/settings/customFields/dropdown:
    servers:
    - url: /
      description: Production API
    post:
      summary: Create a dropdown custom field
      description: Creates a dropdown custom field definition.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDropdownCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DropdownSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to create this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v1/settings/customFields/dropdown/{customFieldId}:
    servers:
    - url: /
      description: Production API
    put:
      summary: Update a dropdown custom field
      description: Updates a dropdown custom field definition.
      parameters:
      - in: path
        name: customFieldId
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateDropdownCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DropdownSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to update this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '404':
          description: Custom field not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v1/settings/customFields/toggle:
    servers:
    - url: /
      description: Production API
    post:
      summary: Create a toggle custom field
      description: Creates a toggle custom field definition.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateToggleCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToggleSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to create this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v1/settings/customFields/toggle/{customFieldId}:
    servers:
    - url: /
      description: Production API
    put:
      summary: Update a toggle custom field
      description: Updates a toggle custom field definition.
      parameters:
      - in: path
        name: customFieldId
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateToggleCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToggleSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to update this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '404':
          description: Custom field not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v1/settings/customFields/{customFieldId}:
    servers:
    - url: /
      description: Production API
    delete:
      summary: Delete a custom field
      description: Deletes a custom field definition by id.
      parameters:
      - in: path
        name: customFieldId
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Custom field deleted successfully, or it did not exist prior to the request.
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v2/settings/accountSettings/jiraNotifications:
    servers:
    - url: /
      description: Production API
    get:
      summary: Returns Jira notifications settings.
      description: 'Returns Jira notifications settings.


        Notifications are sent in Jira due to 7pace Timetracker exporting worklogs to Jira-native time tracking. Notifications are sent for the following operations: create, update, or delete worklog.

        '
      responses:
        '200':
          description: Jira notifications setting returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JiraNotificationsSettingsResponse'
      tags:
      - Settings
    put:
      summary: Enables or disables Jira notifications
      description: 'Enables or disables Jira notifications. It may take a couple of minutes for a configuration change to fully take effect.


        Notifications are sent in Jira due to 7pace Timetracker exporting worklogs to Jira-native time tracking. Notifications are sent for the following operations: create, update, or delete worklog.

        '
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JiraNotificationsSettingsRequest'
      responses:
        '200':
          description: Jira notifications setting updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JiraNotificationsSettingsResponse'
      tags:
      - Settings
  /api/v2/settings/customFields:
    servers:
    - url: /
      description: Production API
    get:
      summary: Get account settings
      description: Returns the global custom fields plus per-space settings for the current account.
      responses:
        '200':
          description: Account settings data
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: object
                    properties:
                      customFields:
                        $ref: '#/components/schemas/AccountSettings'
                      settings:
                        type: array
                        items:
                          $ref: '#/components/schemas/CustomFieldSetting'
      tags:
      - Settings
  /api/v2/settings/customFields/dropdown:
    servers:
    - url: /
      description: Production API
    post:
      summary: Create a dropdown custom field
      description: Creates a dropdown custom field definition in the specified setting if settingId is provided, or in the global scope otherwise.
      parameters:
      - in: query
        name: settingId
        required: false
        description: Setting id to scope the custom field to. Omit for global.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateDropdownCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DropdownSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to create this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v2/settings/customFields/dropdown/{customFieldId}:
    servers:
    - url: /
      description: Production API
    put:
      summary: Update a dropdown custom field
      description: Updates a dropdown custom field definition in the specified setting if settingId is provided, or in the global scope otherwise.
      parameters:
      - in: path
        name: customFieldId
        required: true
        schema:
          type: string
      - in: query
        name: settingId
        required: false
        description: Setting id the custom field belongs to. Omit for global.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateDropdownCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DropdownSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to update this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '404':
          description: Custom field not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v2/settings/customFields/toggle:
    servers:
    - url: /
      description: Production API
    post:
      summary: Create a toggle custom field
      description: Creates a toggle custom field definition in the specified setting if settingId is provided, or in the global scope otherwise.
      parameters:
      - in: query
        name: settingId
        required: false
        description: Setting id to scope the custom field to. Omit for global.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateToggleCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToggleSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to create this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v2/settings/customFields/toggle/{customFieldId}:
    servers:
    - url: /
      description: Production API
    put:
      summary: Update a toggle custom field
      description: Updates a toggle custom field definition in the specified setting if settingId is provided, or in the global scope otherwise.
      parameters:
      - in: path
        name: customFieldId
        required: true
        schema:
          type: string
      - in: query
        name: settingId
        required: false
        description: Setting id the custom field belongs to. Omit for global.
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateToggleCustomFieldRequest'
      responses:
        '200':
          description: Custom field definition updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToggleSettings'
        '400':
          description: Validation error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to update this custom field.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '404':
          description: Custom field not found.
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                  title:
                    type: string
                  detail:
                    type: string
                  traceId:
                    type: string
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v2/settings/customFields/{customFieldId}:
    servers:
    - url: /
      description: Production API
    delete:
      summary: Delete a custom field
      description: Deletes a custom field definition by id in the specified setting if settingId is provided, or in the global scope otherwise.
      parameters:
      - in: path
        name: customFieldId
        required: true
        schema:
          type: string
      - in: query
        name: settingId
        required: false
        description: Setting id the custom field belongs to. Omit for global.
        schema:
          type: string
      responses:
        '204':
          description: Custom field deleted successfully, or it did not exist prior to the request.
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v2/settings/customFields/settings:
    servers:
    - url: /
      description: Production API
    post:
      summary: Create a custom fields setting
      description: Creates a custom fields setting bound to one or more spaces (Jira project ids).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateCustomFieldSettingRequest'
      responses:
        '200':
          description: Setting created.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomFieldSetting'
        '400':
          description: Validation error. CUSTOM_FIELDS_SETTING_CONFLICT is returned when the name is already in use or a space is already bound to another setting.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to manage settings.
        '500':
          description: Internal server error.
      tags:
      - Settings
  /api/v2/settings/customFields/settings/{settingId}:
    servers:
    - url: /
      description: Production API
    put:
      summary: Update a custom fields setting
      description: Updates a setting name and/or its bound spaces. At least one of name or spaceIds must be provided.
      parameters:
      - in: path
        name: settingId
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateCustomFieldSettingRequest'
      responses:
        '200':
          description: Setting updated.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CustomFieldSetting'
        '400':
          description: Validation error. CUSTOM_FIELDS_SETTING_NOT_FOUND when the setting does not exist; CUSTOM_FIELDS_SETTING_CONFLICT on name or space uniqueness violations.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to manage settings.
        '500':
          description: Internal server error.
      tags:
      - Settings
    delete:
      summary: Delete a custom fields setting
      description: Deletes a custom fields setting by id. Idempotent.
      parameters:
      - in: path
        name: settingId
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Setting deleted successfully, or it did not exist prior to the request.
        '401':
          description: Unauthorized access. This indicates a problem with Authorization. Ensure apitoken is valid, and you are setting Authorization header to Bearer {apitoken}
        '403':
          description: Forbidden. The user associated with the apitoken does not have permission to manage settings.
        '500':
          description: Internal server error.
      tags:
      - Settings
components:
  schemas:
    JiraNotificationsSettingsRequest:
      type: object
      required:
      - enabled
      properties:
        enabled:
          type: boolean
    DropdownOptionSettings:
      type: object
      properties:
        id:
          type: string
        value:
          type: string
        color:
          type: string
        used:
          type: integer
    CreateDropdownOptionRequest:
      type: object
      required:
      - value
      - color
      properties:
        value:
          type: string
          minLength: 1
          maxLength: 50
        color:
          type: string
          pattern: ^#([0-9a-fA-F]{6})$
    UpdateCustomFieldSettingRequest:
      type: object
      description: At least one of name or spaceIds must be provided.
      properties:
        name:
          type: string
          minLength: 1
        spaceIds:
          type: array
          items:
            type: string
    CustomFieldSetting:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        spaceIds:
          type: array
          items:
            type: string
        customFields:
          $ref: '#/components/schemas/AccountSettings'
    CreateCustomFieldSettingRequest:
      type: object
      required:
      - name
      - spaceIds
      properties:
        name:
          type: string
          minLength: 1
        spaceIds:
          type: array
          items:
            type: string
    ProblemDetails:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        detail:
          type: string
        traceId:
          type: string
    JiraNotificationsSettingsResponse:
      type: object
      required:
      - enabled
      properties:
        enabled:
          type: boolean
    CreateToggleCustomFieldRequest:
      type: object
      required:
      - name
      properties:
        name:
          type: string
          minLength: 1
          maxLength: 50
        enabled:
          type: boolean
        mandatory:
          type: boolean
        description:
          type: string
          maxLength: 150
        default:
          type: boolean
    UpdateDropdownOptionRequest:
      type: object
      required:
      - value
      - color
      properties:
        id:
          type: string
          minLength: 1
        value:
          type: string
          minLength: 1
          maxLength: 50
        color:
          type: string
          pattern: ^#([0-9a-fA-F]{6})$
    ToggleSettings:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        enabled:
          type: boolean
        mandatory:
          type: boolean
        description:
          type: string
        default:
          type: boolean
    DropdownSettings:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        enabled:
          type: boolean
        mandatory:
          type: boolean
        description:
          type: string
        options:
          type: array
          items:
            $ref: '#/components/schemas/DropdownOptionSettings'
    CreateDropdownCustomFieldRequest:
      type: object
      required:
      - name
      - options
      properties:
        name:
          type: string
          minLength: 1
          maxLength: 50
        enabled:
          type: boolean
        mandatory:
          type: boolean
        description:
          type: string
          maxLength: 150
        options:
          type: array
          minItems: 1
          maxItems: 199
          items:
            $ref: '#/components/schemas/CreateDropdownOptionRequest'
    UpdateDropdownCustomFieldRequest:
      type: object
      required:
      - name
      - options
      properties:
        name:
          type: string
          minLength: 1
          maxLength: 50
        enabled:
          type: boolean
        mandatory:
          type: boolean
        description:
          type: string
          maxLength: 150
        options:
          type: array
          minItems: 1
       

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