> ## Documentation Index
> Fetch the complete documentation index at: https://juridiqsoftware.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Listar campos personalizados de pessoas



## OpenAPI

````yaml https://api.juridiq.com.br/openapi.json get /person-custom-fields/
openapi: 3.1.0
info:
  title: Juridiq Server API (interno)
  description: Documentação técnica **interna** da API Juridiq Server
  version: 1.0.0
servers:
  - url: http://localhost:3001
    description: Development server
  - url: https://api.juridiq.com.br
    description: Production server
security:
  - bearerAuth: []
paths:
  /person-custom-fields/:
    get:
      tags:
        - Person Custom Fields
      summary: Listar campos personalizados de pessoas
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                      format: uuid
                      description: ID do campo personalizado
                    name:
                      type: string
                      description: Nome do campo
                    type:
                      type: string
                      enum:
                        - text
                        - longText
                        - date
                        - time
                        - dateTime
                        - number
                        - select
                        - multiSelect
                      description: Tipo do campo
                    options:
                      type: array
                      items:
                        type: string
                      nullable: true
                      description: Opções, quando o tipo aceita
                    isArchived:
                      type: boolean
                      description: Campo arquivado
                    createdAt:
                      type: string
                      format: date-time
                      description: Data de criação
                    updatedAt:
                      type: string
                      format: date-time
                      description: Data da última alteração
                  required:
                    - id
                    - name
                    - type
                    - options
                    - isArchived
                    - createdAt
                    - updatedAt
                  additionalProperties: false
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: 'Insira o token JWT no formato: Bearer {token}'

````