Загрузка данных


Swagger schema validation failed.
  #/ must NOT have additional properties
  #/ must NOT have additional properties
  #/ must NOT have additional properties
  #/ must NOT have additional properties


InternalListUserAccountsResponseDto:
  description: Список лицевых счетов пользователей
  x-all-of-name: "ListUserAccountsResponseDto"
  allOf:
    - $ref: '#/components/schemas/PagingEnvelopeDto'
    - type: object
      properties:
        items:
          type: array
          description: List of Items
          readOnly: true
          items:
            $ref: '#/InternalUserAccountDto'

InternalUserAccountDto:
  type: object
  allOf:
    - $ref: '#/components/schemas/UserAccountDto'
    - type: object
      properties:
        ledgerAccountId:
          title: ID счета в ledger
          type: string
          format: UUID
          readOnly: true
          example: 76db20a5-1f9c-430c-ad81-40f4771ceea3

InternalListNominalAccountsResponseDto:
  description: Список номинальных счетов
  x-all-of-name: "InternalListNominalAccountsResponseDto"
  allOf:
    - $ref: '#/components/schemas/PagingEnvelopeDto'
    - type: object
      properties:
        items:
          type: array
          description: List of Items
          readOnly: true
          items:
            $ref: '#/InternalNominalAccountDto'

InternalNominalAccountDto:
  type: object
  allOf:
    - $ref: '#/components/schemas/NominalAccountDto'
    - type: object
      properties:
        ledgerAccountId:
          title: ID счета в ledger
          type: string
          format: UUID
          readOnly: true
          example: 76db20a5-1f9c-430c-ad81-40f4771ceea3