Workist Master Data API

The Master Data API from Workist — 12 operation(s) for master data.

Operations 13

POST /master-data/addresses/imports Create a new master data import #
POST /master-data/articles/imports Create a new master data import #
POST /master-data/clients/imports Create a new master data import #
POST /master-data/contacts/imports Create a new master data import #
POST /master-data/conversion-factors/imports Create a new master data import #
POST /master-data/framework-contracts/imports Create a new master data import #
GET /master-data/imports Get all master data import runs #
POST /master-data/imports Create a new master data import #
GET /master-data/imports/{id} Get a specific master data import run #
POST /master-data/imports/{id}/data Append a batch of data to a batched import #
POST /master-data/imports/{id}/start Start the batched import & ingest all associated data #
POST /master-data/offer-matching/imports Create a new master data import #
POST /master-data/order-matching/imports Create a new master data import #

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/workist-master-data-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

workist-master-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Workist Integrations & Developer Delivery Notes Master Data API
  version: v1
  description: With this API you can access different resources of the Workist platform (e.g. processed documents, masterdata imports)
  termsOfService: https://www.workist.com/terms-of-use
  contact:
    email: info@workist.com
servers:
- url: /v1/
- url: /api/v1/
tags:
- name: Master Data
paths:
  /master-data/addresses/imports:
    post:
      operationId: addresses_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AddressMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AddressMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AddressMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/articles/imports:
    post:
      operationId: articles_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ArticleMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ArticleMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ArticleMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/clients/imports:
    post:
      operationId: clients_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ClientMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ClientMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ClientMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/contacts/imports:
    post:
      operationId: contacts_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ContactMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ContactMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ContactMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/conversion-factors/imports:
    post:
      operationId: conversion_factors_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConversionFactorMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ConversionFactorMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ConversionFactorMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/framework-contracts/imports:
    post:
      operationId: framework_contracts_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FrameworkContractMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/FrameworkContractMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/FrameworkContractMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/imports:
    get:
      operationId: imports_list
      description: Returns all your master data import runs.
      summary: Get all master data import runs
      parameters:
      - name: page
        required: false
        in: query
        description: A page number within the paginated result set.
        schema:
          type: integer
      - name: page_size
        required: false
        in: query
        description: Number of results to return per page.
        schema:
          type: integer
      tags:
      - Master Data
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedDataImportRunList'
          description: Success
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
    post:
      operationId: imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/ImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/ImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/imports/{id}:
    get:
      operationId: imports_retrieve
      description: Returns the details of a specific master data import run.
      summary: Get a specific master data import run
      parameters:
      - in: path
        name: id
        schema:
          type: string
          format: uuid
        description: A UUID string identifying this data import run.
        required: true
      tags:
      - Master Data
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataImportRun'
          description: Success
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/imports/{id}/data:
    post:
      operationId: imports_data_create
      description: Only for batched imports. Associates a batch of data (given as a `file`, `file_url` or JSON `data`) with the import. In case you are using the `file` or `file_url` parameters, each batch file needs to provide a similar header row containing the column names. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. You can call this endpoint as often as needed to transfer all your data in batches, each batch will be appended to the import. When all data has been transferred, you need to start the import explicitly. Once the import has started processing, all data will be made available for download as a single CSV file (`input_file_url` and `input_file_num_rows` of the returned `DataImportRun`) - regardless of the format it was originally provided in. For a pretty overview of all imports and their status, you can check the master data imports in the Workbench (channel settings).
      summary: Append a batch of data to a batched import
      parameters:
      - in: path
        name: id
        schema:
          type: string
          format: uuid
        description: A UUID string identifying this data import run.
        required: true
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/DataRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/DataRequest'
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The data was successfully appended to the import. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/imports/{id}/start:
    post:
      operationId: imports_start_create
      description: Only for batched imports. Starts the import and ingest all associated data. Note that you cannot POST any more batches of data to an import run once it has been started. If you have a single `file`, `file_url` or a small amount  of `data` that can be imported in a single request, prefer using a non-batched import instead.
      summary: Start the batched import & ingest all associated data
      parameters:
      - in: path
        name: id
        schema:
          type: string
          format: uuid
        description: A UUID string identifying this data import run.
        required: true
      tags:
      - Master Data
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import was started successfully
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/offer-matching/imports:
    post:
      operationId: offer_matching_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OfferMatchingMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/OfferMatchingMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/OfferMatchingMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
  /master-data/order-matching/imports:
    post:
      operationId: order_matching_imports_create
      description: "Create a new import for the given `lookup_definition_id`. To see the schema that the data should conform to, please refer to the import endpoint parameters for each type of master data. \n\nNote: by default, the given data will be imported immediately. If your data volume exceeds the limits for a single request (see `file`, `file_url` and `data` parameters below), you can create a batched import instead (by setting `batched: true`). Batched imports are created in pending status and will accept additional batches of data, which are appended to the import. After all batches of data have been transferred, batched imports need to be started explicitly. "
      summary: Create a new master data import
      tags:
      - Master Data
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrderMatchingMasterDataImportRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/OrderMatchingMasterDataImportRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/OrderMatchingMasterDataImportRequest'
        required: true
      responses:
        '202':
          headers:
            Location:
              schema:
                type: string
              description: URL to get the import status
              required: true
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AcceptedResponse'
          description: The import run was created successfully. The status of the import can be checked by calling the import details endpoint with the returned import id.
        '400':
          description: The request was unacceptable, often due to missing a required parameter or an invalid value.
        '401':
          description: Unauthorized, no valid token provided.
        '404':
          description: The requested resource doesn't exist.
        '500':
          description: Something went wrong on Workist's end.
      security:
      - BearerAuthentication: []
components:
  schemas:
    ContactMasterDataImportRequest:
      type: object
      properties:
        lookup_definition_id:
          type: string
          format: uuid
          description: ID of a lookup definition (obtainable via Workbench)
        batched:
          type: boolean
          default: false
          description: If `true`, the import will be created in a pending status so that additional batches of data can be appended to the import. If `false` (default), the import will be started immediately.
        file_url:
          type: string
          format: uri
          minLength: 1
          description: If given, the file at the target URL will be downloaded, stored temporarily and imported when the import run is started. Make sure the `file_url` is publicly accessible. The maximum allowed download file size is 300.0 MB.
        file:
          type: string
          format: binary
          description: If given, the file will be temporarily stored and imported when the import run is started. The maximum allowed file size for a single request is 10.0 MB.
        data:
          type: array
          items:
            $ref: '#/components/schemas/ContactMasterData'
      required:
      - lookup_definition_id
    OrderMatchingMasterData:
      type: object
      properties:
        partition_id:
          type: string
          minLength: 1
        extra_data:
          type: object
          additionalProperties: {}
        order_number:
          type: string
          minLength: 1
        order_date:
          type:
          - string
          - 'null'
          format: date-time
        order_total_price:
          type:
          - string
          - 'null'
          format: decimal
          pattern: ^-?\d{0,8}(?:\.\d{0,2})?$
        delivery_address:
          type:
          - string
          - 'null'
        receiver_number:
          type:
          - string
          - 'null'
        position_number:
          type:
          - string
          - 'null'
        article_id1:
          type: string
          minLength: 1
        article_id2:
          type:
          - string
          - 'null'
        article_id3:
          type:
          - string
          - 'null'
        article_description:
          type:
          - string
          - 'null'
        article_price:
          type:
          - string
          - 'null'
          format: decimal
          pattern: ^-?\d{0,8}(?:\.\d{0,2})?$
        quantity:
          type:
          - string
          - 'null'
          format: decimal
          pattern: ^-?\d{0,8}(?:\.\d{0,2})?$
        total_price:
          type:
          - string
          - 'null'
          format: decimal
          pattern: ^-?\d{0,8}(?:\.\d{0,2})?$
        delivery_date:
          type:
          - string
          - 'null'
          format: date-time
        unit:
          type:
          - string
          - 'null'
        iban:
          type:
          - string
          - 'null'
        swift:
          type:
          - string
          - 'null'
        account:
          type:
          - string
          - 'null'
        payment_terms_type:
          type:
          - string
          - 'null'
        payment_terms_discount:
          type:
          - string
          - 'null'
        payment_terms_due_days:
          type:
          - string
          - 'null'
      required:
      - article_id1
      - order_number
    OfferMatchingMasterDataImportRequest:
      type: object
      properties:
        lookup_definition_id:
          type: string
          format: uuid
          description: ID of a lookup definition (obtainable via Workbench)
        batched:
          type: boolean
          default: false
          description: If `true`, the import will be created in a pending status so that additional batches of data can be appended to the import. If `false` (default), the import will be started immediately.
        file_url:
          type: string
          format: uri
          minLength: 1
          description: If given, the file at the target URL will be downloaded, stored temporarily and imported when the import run is started. Make sure the `file_url` is publicly accessible. The maximum allowed download file size is 300.0 MB.
        file:
          type: string
          format: binary
          description: If given, the file will be temporarily stored and imported when the import run is started. The maximum allowed file size for a single request is 10.0 MB.
        data:
          type: array
          items:
            $ref: '#/components/schemas/OfferMatchingMasterData'
      required:
      - lookup_definition_id
    AddressMasterData:
      type: object
      properties:
        partition_id:
          type: string
          minLength: 1
        extra_data:
          type: object
          additionalProperties: {}
        address_id1:
          type: string
          minLength: 1
        address_id2:
          type:
          - string
          - 'null'
          minLength: 1
        address_id3:
          type:
          - string
          - 'null'
          minLength: 1
        contact_person:
          type:
          - string
          - 'null'
          minLength: 1
        name:
          type:
          - string
          - 'null'
          minLength: 1
        misc:
          type:
          - string
          - 'null'
          minLength: 1
        address1:
          type:
          - string
          - 'null'
          minLength: 1
        address2:
          type:
          - string
          - 'null'
          minLength: 1
        street_name:
          type:
          - string
          - 'null'
          minLength: 1
        street_number:
          type:
          - string
          - 'null'
          minLength: 1
        zip_code:
          type:
          - string
          - 'null'
          minLength: 1
        city:
          type:
  

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