---
title: "ConfigurableFieldResponse"
url: "https://developer.tesma.com/apis/tesma-platform-api-v1/versions/333907fb-f0a7-4e20-b01e-c9915c73321a/schemas/ConfigurableFieldResponse"
---

> Full API specification: https://developer.tesma.com/apis/tesma-platform-api-v1/versions/333907fb-f0a7-4e20-b01e-c9915c73321a.md

# ConfigurableFieldResponse

## OpenAPI definition

```yaml
openapi: 3.1.1
info:
  title: tesma
  version: v1
servers:
  - url: https://api.tesma.com
components:
  schemas:
    FieldConfiguration4CorporateGroupType:
      enum:
        - text
        - date
        - state
        - undefined
      type: string
    ReferenceValueResponse:
      additionalProperties: false
      properties:
        id:
          format: int32
          type: integer
        invoiceGroupNumber:
          format: int32
          type:
            - "null"
            - integer
        text:
          minLength: 1
          type: string
      required:
        - text
      type: object
    ConfigurableFieldResponse:
      additionalProperties: false
      properties:
        corporateGroupId:
          format: int32
          type: integer
        customerFieldName:
          type:
            - "null"
            - string
        defaultInvoiceGroupNumber:
          format: int32
          type:
            - "null"
            - integer
        externalTechnicalFieldName:
          type:
            - "null"
            - string
        fieldType:
          $ref: "#/components/schemas/FieldConfiguration4CorporateGroupType"
        isReferenceValueEnabled:
          type: boolean
        referenceValues:
          items:
            $ref: "#/components/schemas/ReferenceValueResponse"
          type:
            - "null"
            - array
        technicalFieldName:
          type:
            - "null"
            - string
      type: object
```
