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

# Import User Dict Words

> Import another user dictionary.

**Laravel Implementation Status**: ✅ Persisted to JSON file with NativeUserDict (no fallback required)



## OpenAPI

````yaml https://raw.githubusercontent.com/invokable/laravel-voicevox/refs/heads/main/docs/en/laravel-openapi.json post /import_user_dict
openapi: 3.1.0
info:
  title: VOICEVOX ENGINE OSS
  description: VOICEVOX OSS  text-to-speech synthesis engine.
  version: latest
servers: []
security: []
paths:
  /import_user_dict:
    post:
      tags:
        - User Dictionary
      summary: Import User Dict Words
      description: >-
        Import another user dictionary.


        **Laravel Implementation Status**: ✅ Persisted to JSON file with
        NativeUserDict (no fallback required)
      operationId: import_user_dict_words
      parameters:
        - name: override
          in: query
          required: true
          schema:
            type: boolean
            description: Whether to overwrite duplicate entries if any exist
            title: Override
          description: Whether to overwrite duplicate entries if any exist
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              additionalProperties:
                $ref: '#/components/schemas/UserDictWord'
              description: User dictionary data to import
              title: Import Dict Data
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    UserDictWord:
      properties:
        surface:
          type: string
          title: Surface
          description: Surface form
        priority:
          type: integer
          maximum: 10
          minimum: 0
          title: Priority
          description: Priority
        context_id:
          type: integer
          title: Context Id
          description: Context ID
          default: 1348
        part_of_speech:
          type: string
          title: Part Of Speech
          description: Part of speech
        part_of_speech_detail_1:
          type: string
          title: Part Of Speech Detail 1
          description: Part of speech detail 1
        part_of_speech_detail_2:
          type: string
          title: Part Of Speech Detail 2
          description: Part of speech detail 2
        part_of_speech_detail_3:
          type: string
          title: Part Of Speech Detail 3
          description: Part of speech detail 3
        inflectional_type:
          type: string
          title: Inflectional Type
          description: Inflectional type
        inflectional_form:
          type: string
          title: Inflectional Form
          description: Inflectional form
        stem:
          type: string
          title: Stem
          description: Stem form
        yomi:
          type: string
          title: Yomi
          description: Reading (yomi)
        pronunciation:
          type: string
          title: Pronunciation
          description: Pronunciation
        accent_type:
          type: integer
          title: Accent Type
          description: Accent type
        mora_count:
          type: integer
          title: Mora Count
          description: Mora count
        accent_associative_rule:
          type: string
          title: Accent Associative Rule
          description: Accent associative rule
      type: object
      required:
        - surface
        - priority
        - part_of_speech
        - part_of_speech_detail_1
        - part_of_speech_detail_2
        - part_of_speech_detail_3
        - inflectional_type
        - inflectional_form
        - stem
        - yomi
        - pronunciation
        - accent_type
        - accent_associative_rule
      title: UserDictWord
      description: Information used for dictionary compilation.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````