Nedap Free Field Definition API

The FreeFieldDefinition API from Nedap — 2 operation(s) for freefielddefinition.

Operations 2

GET /t/free_field_definitions/x-stream-connect/data Retrieve all entries for free_field_definitions #
GET /v0/xstream/free_field_definitions/data Retrieve all entries for free_field_definitions #

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/nedap-freefielddefinition-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

nedap-freefielddefinition-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Nedap Free Field Definition API
  version: 0.0.0
  description: 'Operations tagged FreeFieldDefinition across 2 of this provider''s published API definitions: nedap-ons-deprecated-openapi-original.json, nedap-ons-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api-development.ons.io
tags:
- name: FreeFieldDefinition
paths:
  /t/free_field_definitions/x-stream-connect/data:
    get:
      tags:
      - FreeFieldDefinition
      summary: Retrieve all entries for free_field_definitions
      operationId: FreeFieldDefinitionAPI.streamAll
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/list.FreeFieldDefinitionList'
            application/x-ndjson:
              schema:
                $ref: '#/components/schemas/FreeFieldDefinition'
        '400':
          description: Could not parse request parameter
        '404':
          description: Resource not found
        '500':
          description: Unspecified internal error
      x-cupido-common-method: true
      x-replaced-by: /v0/xstream/free_field_definitions/data
      deprecated: true
      x-deprecated-since: 19-11-2025
    servers:
    - url: https://api-development.ons.io
  /v0/xstream/free_field_definitions/data:
    get:
      tags:
      - FreeFieldDefinition
      summary: Retrieve all entries for free_field_definitions
      operationId: FreeFieldDefinitionAPI.streamAll
      responses:
        '200':
          description: No response was specified
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/list.FreeFieldDefinitionList'
            application/x-ndjson:
              schema:
                $ref: '#/components/schemas/FreeFieldDefinition'
        '400':
          description: Could not parse request parameter
        '404':
          description: Resource not found
        '500':
          description: Unspecified internal error
      x-cupido-common-method: true
      x-replacement-for:
      - /t/free_field_definitions/x-stream-connect/data
    servers:
    - url: https://api-development.ons.io
components:
  schemas:
    FreeFieldType:
      type: integer
      oneOf:
      - title: STRING
        enum:
        - 0
      - title: NUMBER
        enum:
        - 1
      - title: BOOLEAN
        enum:
        - 2
      - title: DATE
        enum:
        - 3
      - title: TIME
        enum:
        - 4
      - title: DATETIME
        enum:
        - 5
      description: 'Specifies the type of the free field. Possible values: 0 = STRING, 1 = NUMBER, 2 = BOOLEAN, 3 = DATE, 4 = TIME, 5 = DATETIME.'
      example: 0
    FreeFieldDefinition:
      type: object
      properties:
        id:
          type: integer
          format: int64
          x-cupido-id: true
        categoryObjectId:
          type: integer
          description: ObjectID of the FreeFieldCategory
          format: int64
        freeFieldType:
          $ref: '#/components/schemas/FreeFieldType'
        length:
          type: integer
          description: Length of the field value
          format: int32
        name:
          type: string
          description: Name of the free field, e.g. Vrij veld 1
        readOnly:
          type: boolean
        required:
          type: boolean
        sequenceNumber:
          type: integer
          description: Order in which the fields are displayed
          format: int32
      description: Table of the possible free fields per category (clients, employees).
      example:
        id: 1
        categoryObjectId: 1
        freeFieldType: 0
        length: 40
        name: Vrij veld 1
        readOnly: true
        required: true
        sequenceNumber: 1
      xml:
        name: FreeFieldDefinition
    list.FreeFieldDefinitionList:
      type: object
      properties:
        freeFieldDefinitions:
          type: array
          items:
            $ref: '#/components/schemas/FreeFieldDefinition'
          xml:
            name: FreeFieldDefinition
      description: FreeFieldDefinitionList model (no description)
      example:
        freeFieldDefinitions:
        - id: 1
          categoryObjectId: 1
          freeFieldType: 0
          length: 40
          name: Vrij veld 1
          readOnly: true
          required: true
          sequenceNumber: 1
      xml:
        name: freeFieldDefinitions
x-refined-from:
- nedap-ons-deprecated-openapi-original.json
- nedap-ons-openapi-original.json