{
  "openapi": "3.0.0",
  "info": {
    "title": "api/doki/upd",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "/"
    },
    {
      "url": "https://api.ati.su"
    }
  ],
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "paths": {
    "/gw/upd/v4/docflows": {
      "post": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Создание документооборота",
        "description": "Создает новый документооборот",
        "operationId": "create_docflow_v4_docflows_post",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DocflowInputSchema"
              }
            }
          },
          "required": true
        },
        "responses": {
          "201": {
            "description": "ID документооборота",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIDSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        },
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ]
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/meta": {
      "get": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Получение метаданных документооборота",
        "description": "Возвращает обогащенные метаданные документооборота и отмечает, что документооборот прочтен.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Если документ в статусе черновика, то авторизация должна быть от лица отправителя документа (sender).<br>• Если документ в любом другом статусе, то вызов метода доступен как отправителю документа (sender), так и получателю (receiver).",
        "operationId": "get_docflow_meta_and_mark_as_read_v4_docflows__docflow_id__meta_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "Обогащенные метаданные документооборота",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/EnrichedDocflowMetaSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Обновление метаданных документооборота",
        "description": "Обновляет метаданные документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица отправителя документа (sender).",
        "operationId": "update_docflow_meta_v4_docflows__docflow_id__meta_put",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DocflowUpdateSchema"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешное обновление метаданных документооборота УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/draft": {
      "get": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Получение черновика документооборота",
        "description": "Возвращает черновик документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица отправителя документа (sender).",
        "operationId": "get_docflow_draft_v4_docflows__docflow_id__draft_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "Черновик документооборота",
            "content": {
              "application/json": {
                "schema": {
                  "anyOf": [
                    {
                      "oneOf": [
                        {
                          "$ref": "#/components/schemas/UPDSellerTitleV501NullableSchema"
                        },
                        {
                          "$ref": "#/components/schemas/UPDSellerTitleV503NullableSchema"
                        }
                      ],
                      "discriminator": {
                        "propertyName": "верс_форм",
                        "mapping": {
                          "5.01": "#/components/schemas/UPDSellerTitleV501NullableSchema",
                          "5.03": "#/components/schemas/UPDSellerTitleV503NullableSchema"
                        }
                      }
                    },
                    {
                      "type": "null"
                    }
                  ],
                  "title": "Response Get Docflow Draft V4 Docflows  Docflow Id  Draft Get"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Обновление черновика документооборота",
        "description": "Обновляет черновик документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица отправителя документа (sender).",
        "operationId": "update_docflow_draft_v4_docflows__docflow_id__draft_put",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "$ref": "#/components/schemas/UPDSellerTitleV501NullableSchema"
                  },
                  {
                    "$ref": "#/components/schemas/UPDSellerTitleV503NullableSchema"
                  }
                ],
                "discriminator": {
                  "propertyName": "верс_форм",
                  "mapping": {
                    "5.01": "#/components/schemas/UPDSellerTitleV501NullableSchema",
                    "5.03": "#/components/schemas/UPDSellerTitleV503NullableSchema"
                  }
                },
                "title": "Data"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешное обновление черновика документооборота УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/documents/title-1/xml": {
      "put": {
        "tags": [
          "Документы УПД (public)"
        ],
        "summary": "Обновление тела титула продавца из XML",
        "description": "Обновляет тело титула продавца из XML.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица отправителя документа (sender).",
        "operationId": "upload_title_1_body_from_xml_for_accounting_v4_docflows__docflow_id__documents_title_1_xml_put",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_upload_title_1_body_from_xml_for_accounting_v4_docflows__docflow_id__documents_title_1_xml_put"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешное обновление из XML титула продавца УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      },
      "get": {
        "tags": [
          "Документы УПД (public)"
        ],
        "summary": "Получение XML титула продавца",
        "description": "Возвращает XML титула продавца.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.",
        "operationId": "get_title_1_body_as_xml_v4_docflows__docflow_id__documents_title_1_xml_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "XML титула продавца",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/edo_orchestrator/v4/docflow-types/upd/docflows/{docflow_id}/documents/title-1/send": {
      "post": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Отправка титула продавца УПД",
        "description": "Отправляет титул продавца УПД в рамках документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица отправителя документа (sender).",
        "operationId": "send_upd_title_1_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_send_post",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_upd_title_1_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_send_post"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешная отправка титула продавца УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/documents/title-1-read-confirmation/xml": {
      "post": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Создание извещения о получении документа",
        "description": "Создает извещение о получении (ИОП) документа.\nГенерация выполняется в системе служебных документов.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "create_title_1_read_confirmation_v4_docflows__docflow_id__documents_title_1_read_confirmation_xml_post",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuxDocumentInputSchema"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Файл Извещения о получении документа",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/edo_orchestrator/v4/docflow-types/upd/docflows/{docflow_id}/documents/title-1-read-confirmation/send": {
      "post": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Отправка извещения о получении титула продавца УПД",
        "description": "Отправляет извещение о получении титула продавца УПД.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "send_upd_title_1_read_confirmation_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_read_confirmation_send_post",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_upd_title_1_read_confirmation_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_read_confirmation_send_post"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешная отправка извещения о получении титула продавца УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/documents/title-2": {
      "put": {
        "tags": [
          "Документы УПД (public)"
        ],
        "summary": "Создание титула покупателя",
        "description": "Создает титул покупателя.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "generate_title_2_v4_docflows__docflow_id__documents_title_2_put",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "oneOf": [
                  {
                    "$ref": "#/components/schemas/UPDBuyerTitleV501NullableSchema"
                  },
                  {
                    "$ref": "#/components/schemas/UPDBuyerTitleV503NullableSchema"
                  }
                ],
                "discriminator": {
                  "propertyName": "верс_форм",
                  "mapping": {
                    "5.01": "#/components/schemas/UPDBuyerTitleV501NullableSchema",
                    "5.03": "#/components/schemas/UPDBuyerTitleV503NullableSchema"
                  }
                },
                "title": "Data"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешное создание титула покупателя УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/documents/title-2/xml": {
      "get": {
        "tags": [
          "Документы УПД (public)"
        ],
        "summary": "Получение XML титула покупателя",
        "description": "Возвращает XML титула покупателя.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.",
        "operationId": "get_title_2_body_as_xml_v4_docflows__docflow_id__documents_title_2_xml_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "XML титула покупателя",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/edo_orchestrator/v4/docflow-types/upd/docflows/{docflow_id}/documents/title-2/send": {
      "post": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Отправка титула покупателя УПД",
        "description": "Отправляет титул покупателя УПД в рамках документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "send_upd_title_2_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_2_send_post",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_upd_title_2_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_2_send_post"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешная отправка титула покупателя УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/documents/title-1-clarification-notification/xml": {
      "post": {
        "tags": [
          "Документы УПД (public)"
        ],
        "summary": "Создание Уведомления об уточнении документа",
        "description": "Создает Уведомление об уточнении (УОУ) документа.\nГенерация выполняется в системе служебных документов.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "create_title_1_clarification_notification_v4_docflows__docflow_id__documents_title_1_clarification_notification_xml_post",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AuxDocumentInputSchema"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Файл Уведомления об уточнении документа",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/edo_orchestrator/v4/docflow-types/upd/docflows/{docflow_id}/documents/title-1-clarification-notification/send": {
      "post": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Отправка уведомления об уточнении титула продавца УПД",
        "description": "Отправляет уведомление об уточнении титула продавца УПД.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "send_upd_title_1_clarification_notification_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_clarification_notification_send_post",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_upd_title_1_clarification_notification_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_clarification_notification_send_post"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешная отправка уведомления об уточнении титула продавца УПД"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/history": {
      "get": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Получение истории документооборота",
        "description": "Возвращает историю изменений статусов документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Если документ в статусе черновика, то авторизация должна быть от лица отправителя документа (sender).<br>• Если документ в любом другом статусе, то вызов метода доступен как отправителю документа (sender), так и получателю (receiver).",
        "operationId": "get_docflow_history_v4_docflows__docflow_id__history_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "История изменений статусов документооборота",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "oneOf": [
                      {
                        "$ref": "#/components/schemas/HistoryRecordData"
                      },
                      {
                        "$ref": "#/components/schemas/HadesHistoryRecordData"
                      }
                    ]
                  },
                  "title": "Response Get Docflow History V4 Docflows  Docflow Id  History Get"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/documents/title-1/body": {
      "get": {
        "tags": [
          "Документы УПД (public)"
        ],
        "summary": "Получение тела титула продавца",
        "description": "Возвращает тело титула продавца.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.",
        "operationId": "get_title_1_body_v4_docflows__docflow_id__documents_title_1_body_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "Тело титула продавца",
            "content": {
              "application/json": {
                "schema": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/UPDSellerTitleV501FullSchema"
                    },
                    {
                      "$ref": "#/components/schemas/UPDSellerTitleV503FullSchema"
                    }
                  ],
                  "discriminator": {
                    "propertyName": "верс_форм",
                    "mapping": {
                      "5.01": "#/components/schemas/UPDSellerTitleV501FullSchema",
                      "5.03": "#/components/schemas/UPDSellerTitleV503FullSchema"
                    }
                  },
                  "title": "Response Get Title 1 Body V4 Docflows  Docflow Id  Documents Title 1 Body Get"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/documents/title-2/body": {
      "get": {
        "tags": [
          "Документы УПД (public)"
        ],
        "summary": "Получение тела титула покупателя",
        "description": "Возвращает тело титула покупателя.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.",
        "operationId": "get_title_2_body_v4_docflows__docflow_id__documents_title_2_body_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "Тело титула покупателя",
            "content": {
              "application/json": {
                "schema": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/UPDBuyerTitleV501FullSchema"
                    },
                    {
                      "$ref": "#/components/schemas/UPDBuyerTitleV503FullSchema"
                    }
                  ],
                  "discriminator": {
                    "propertyName": "верс_форм",
                    "mapping": {
                      "5.01": "#/components/schemas/UPDBuyerTitleV501FullSchema",
                      "5.03": "#/components/schemas/UPDBuyerTitleV503FullSchema"
                    }
                  },
                  "title": "Response Get Title 2 Body V4 Docflows  Docflow Id  Documents Title 2 Body Get"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/original": {
      "get": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Получение XML-оригинала документа",
        "description": "Возвращает XML-оригинал документа.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Документооборот не должен быть в статусе черновика.",
        "operationId": "download_docflow_original_v4_docflows__docflow_id__original_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "XML-оригинал документа",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/pdf": {
      "get": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Скачивание PDF-файла документа",
        "description": "Возвращает PDF-файл документа.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Если документ в статусе черновика, то авторизация должна быть от лица отправителя документа (sender).<br>• Если документ в любом другом статусе, то вызов метода доступен как отправителю документа (sender), так и получателю (receiver).",
        "operationId": "get_docflow_pdf_v4_docflows__docflow_id__pdf_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "PDF-файл документа",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/upd/v4/docflows/{docflow_id}/protocol/pdf": {
      "post": {
        "tags": [
          "Документообороты УПД (public)"
        ],
        "summary": "Скачивание PDF-файла протокола документооборота",
        "description": "Возвращает PDF-файл протокола документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Документооборот не должен быть в статусе черновика.",
        "operationId": "get_docflow_protocol_pdf_v4_docflows__docflow_id__protocol_pdf_post",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          },
          {
            "edo-id": []
          },
          {
            "baggage": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "$ref": "#/components/schemas/DocumentData"
                },
                "title": "Related Documents Data"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "PDF-файл протокола документооборота",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/edo_orchestrator/v4/docflow-types/upd/docflows/{docflow_id}/documents/zip": {
      "get": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Получение ZIP-архива УПД по документообороту",
        "description": "Возвращает ZIP-архив УПД по указанному документообороту.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.",
        "operationId": "get_upd_document_zip_v4_docflow_types_upd_docflows__docflow_id__documents_zip_get",
        "security": [
          {
            "api-secret": []
          },
          {
            "client-name": []
          },
          {
            "user-id": []
          }
        ],
        "parameters": [
          {
            "name": "docflow_id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string",
              "description": "ID документооборота",
              "title": "Docflow Id"
            },
            "description": "ID документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "ZIP-архив УПД по документообороту",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "HTTPValidationError": {
        "properties": {
          "detail": {
            "items": {
              "$ref": "#/components/schemas/ValidationError"
            },
            "type": "array",
            "title": "Detail"
          }
        },
        "type": "object",
        "title": "HTTPValidationError"
      },
      "SignerSchema": {
        "properties": {
          "first_name": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "First Name",
            "description": "Имя подписанта"
          },
          "last_name": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Last Name",
            "description": "Фамилия подписанта"
          },
          "patronymic": {
            "type": "string",
            "maxLength": 60,
            "nullable": true,
            "title": "Patronymic"
          },
          "position": {
            "type": "string",
            "maxLength": 255,
            "nullable": true,
            "title": "Position"
          }
        },
        "type": "object",
        "required": [
          "first_name",
          "last_name"
        ],
        "title": "SignerSchema"
      },
      "ValidationError": {
        "properties": {
          "loc": {
            "items": {
              "enum": [
                "string",
                "integer"
              ]
            },
            "type": "array",
            "title": "Location"
          },
          "msg": {
            "type": "string",
            "title": "Message"
          },
          "type": {
            "type": "string",
            "title": "Error Type"
          }
        },
        "type": "object",
        "required": [
          "loc",
          "msg",
          "type"
        ],
        "title": "ValidationError"
      },
      "DocumentData": {
        "description": "Данные для создания документа",
        "properties": {
          "date": {
            "description": "Дата документа",
            "format": "date",
            "type": "string"
          },
          "doc_recipient_contact": {
            "$ref": "#/components/schemas/UserCode"
          },
          "doc_request": {
            "description": "Флаг запроса решения для документа. Если это поле не передается, то для новых документов\nзапрос решения остается без изменений. Если это передается, то в документе для флага\nбудет использовано переданное значение.\n",
            "type": "boolean"
          },
          "doc_sender_contact": {
            "$ref": "#/components/schemas/UserCode"
          },
          "doctype": {
            "description": "Тип документа",
            "type": "string",
            "enum": [
              "акт",
              "доверенность",
              "договор",
              "заказ",
              "заказ (табличный вид)",
              "заявка (к договору)",
              "заявка к договору (табличный вид)",
              "поручение экспедитору",
              "счет",
              "другой"
            ]
          },
          "id": {
            "description": "Идентификатор документа",
            "type": "string"
          },
          "number": {
            "description": "Номер документа",
            "type": "string"
          },
          "xmlBody": {
            "description": "Тело документа в формате xml, в виде строки",
            "type": "string"
          }
        },
        "type": "object"
      },
      "UserCode": {
        "description": "Код пользователя в ATI.SU в формате <код фирмы>.<id контакта>",
        "type": "string"
      },
      "ActionTypeEnum": {
        "type": "string",
        "enum": [
          "start_sending",
          "confirm_sending",
          "start_receiving",
          "confirm_receiving",
          "roaming_error"
        ],
        "title": "ActionTypeEnum"
      },
      "ActorTypeEnum": {
        "type": "string",
        "enum": [
          "sender_user",
          "sender_operator",
          "receiver_user",
          "receiver_operator"
        ],
        "title": "ActorTypeEnum"
      },
      "AuxDocumentInputSchema": {
        "properties": {
          "signer_info": {
            "$ref": "#/components/schemas/SignerSchema",
            "description": "Данные подписанта"
          },
          "mchd_info": {
            "$ref": "#/components/schemas/MCHDSchema",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "signer_info"
        ],
        "title": "AuxDocumentInputSchema"
      },
      "Body_upload_title_1_body_from_xml_for_accounting_v4_docflows__docflow_id__documents_title_1_xml_put": {
        "properties": {
          "file": {
            "type": "string",
            "format": "binary",
            "title": "File",
            "description": "Файл документа"
          }
        },
        "type": "object",
        "required": [
          "file"
        ],
        "title": "Body_upload_title_1_body_from_xml_for_accounting_v4_docflows__docflow_id__documents_title_1_xml_put"
      },
      "CombinedDocflowStateEnum": {
        "type": "string",
        "enum": [
          "draft",
          "waiting_for_roaming_provider_confirmation",
          "waiting_for_roaming_user_response",
          "waiting_for_read_confirmation",
          "waiting_for_title_2",
          "clarification_notification_requested",
          "done",
          "roaming_error",
          "receiver_refused_to_sign",
          "annulment_requested",
          "annulment_done"
        ],
        "title": "CombinedDocflowStateEnum",
        "description": "Статусы ДО, нужные для вывода на фронте (левый сайдбар) и в списке документов\n\nМногие совпадают с `DocflowStateEnum`, но в некоторых случаях учитывается не только\nстатус самого ДО, но и статус документов внутри ДО"
      },
      "DocflowFlagEnum": {
        "type": "string",
        "enum": [
          "can_be_archived",
          "can_be_deleted",
          "can_be_unarchived",
          "can_be_undeleted",
          "can_be_annulled",
          "needs_read_confirmation",
          "edo_can_be_signed"
        ],
        "title": "DocflowFlagEnum",
        "description": "Флаги доступности действий над документооборотом"
      },
      "DocflowIDSchema": {
        "properties": {
          "id": {
            "type": "string",
            "title": "Id",
            "description": "ID документооборота"
          }
        },
        "type": "object",
        "required": [
          "id"
        ],
        "title": "DocflowIDSchema"
      },
      "DocflowInputSchema": {
        "properties": {
          "doctype": {
            "$ref": "#/components/schemas/SargonDoctypeEnum",
            "description": "Тип документа"
          },
          "number": {
            "type": "string",
            "nullable": true,
            "title": "Number",
            "description": "Номер документа"
          },
          "date": {
            "type": "string",
            "format": "date",
            "nullable": true,
            "title": "Date",
            "description": "Дата документа"
          },
          "sender_edo_id": {
            "type": "string",
            "title": "Sender Edo Id",
            "description": "EDO ID отправителя документооборота"
          },
          "receiver": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/NativeParticipantInputSchema"
              },
              {
                "$ref": "#/components/schemas/RoamingParticipantInputSchema"
              }
            ],
            "discriminator": {
              "propertyName": "type",
              "mapping": {
                "native": "#/components/schemas/NativeParticipantInputSchema",
                "roaming": "#/components/schemas/RoamingParticipantInputSchema"
              }
            },
            "nullable": true,
            "title": "Receiver",
            "description": "Информация о получателе документооборота"
          },
          "ati_admin_id": {
            "type": "string",
            "nullable": true,
            "title": "Ati Admin Id",
            "description": "Идентификатор ДО, если документ был создан через АтиАдмин"
          }
        },
        "type": "object",
        "required": [
          "doctype",
          "sender_edo_id"
        ],
        "title": "DocflowInputSchema"
      },
      "EnrichedDocflowMetaSchema": {
        "properties": {
          "doctype": {
            "$ref": "#/components/schemas/SargonDoctypeEnum",
            "description": "Тип документа"
          },
          "number": {
            "type": "string",
            "nullable": true,
            "title": "Number",
            "description": "Номер документа"
          },
          "date": {
            "type": "string",
            "format": "date",
            "nullable": true,
            "title": "Date",
            "description": "Дата документа"
          },
          "id": {
            "type": "string",
            "title": "Id",
            "description": "ID документооборота"
          },
          "state": {
            "$ref": "#/components/schemas/CombinedDocflowStateEnum",
            "description": "Статус документооборота"
          },
          "created_at": {
            "type": "string",
            "format": "date-time",
            "title": "Created At",
            "description": "Дата создания документооборота"
          },
          "updated_at": {
            "type": "string",
            "format": "date-time",
            "title": "Updated At",
            "description": "Дата обновления документооборота"
          },
          "sender": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/EnrichedNativeParticipantData"
              },
              {
                "$ref": "#/components/schemas/EnrichedRoamingParticipantData"
              }
            ],
            "title": "Sender",
            "description": "Информация об отправителе",
            "discriminator": {
              "propertyName": "user_type",
              "mapping": {
                "native": "#/components/schemas/EnrichedNativeParticipantData",
                "roaming": "#/components/schemas/EnrichedRoamingParticipantData"
              }
            }
          },
          "receiver": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/EnrichedNativeParticipantData"
              },
              {
                "$ref": "#/components/schemas/EnrichedRoamingParticipantData"
              }
            ],
            "discriminator": {
              "propertyName": "user_type",
              "mapping": {
                "native": "#/components/schemas/EnrichedNativeParticipantData",
                "roaming": "#/components/schemas/EnrichedRoamingParticipantData"
              }
            },
            "nullable": true,
            "title": "Receiver",
            "description": "Информация о получателе"
          },
          "flags": {
            "items": {
              "$ref": "#/components/schemas/DocflowFlagEnum"
            },
            "type": "array",
            "title": "Flags",
            "description": "Флаги доступности действий над документооборотом"
          }
        },
        "type": "object",
        "required": [
          "doctype",
          "id",
          "state",
          "created_at",
          "updated_at",
          "sender",
          "flags"
        ],
        "title": "EnrichedDocflowMetaSchema"
      },
      "DocflowUpdateSchema": {
        "properties": {
          "doctype": {
            "$ref": "#/components/schemas/SargonDoctypeEnum",
            "description": "Тип документа"
          },
          "number": {
            "type": "string",
            "nullable": true,
            "title": "Number",
            "description": "Номер документа"
          },
          "date": {
            "type": "string",
            "format": "date",
            "nullable": true,
            "title": "Date",
            "description": "Дата документа"
          },
          "sender_edo_id": {
            "type": "string",
            "title": "Sender Edo Id",
            "description": "EDO ID отправителя документооборота"
          },
          "receiver": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/NativeParticipantInputSchema"
              },
              {
                "$ref": "#/components/schemas/RoamingParticipantInputSchema"
              }
            ],
            "discriminator": {
              "propertyName": "type",
              "mapping": {
                "native": "#/components/schemas/NativeParticipantInputSchema",
                "roaming": "#/components/schemas/RoamingParticipantInputSchema"
              }
            },
            "nullable": true,
            "title": "Receiver",
            "description": "Информация о получателе документооборота"
          }
        },
        "type": "object",
        "required": [
          "doctype",
          "sender_edo_id"
        ],
        "title": "DocflowUpdateSchema"
      },
      "DocumentTypeEnum": {
        "type": "string",
        "enum": [
          "title-1",
          "title-1-read-confirmation",
          "title-1-clarification-notification",
          "title-1-signature-rejection",
          "title-2",
          "title-2-read-confirmation"
        ],
        "title": "DocumentTypeEnum"
      },
      "EnrichedNativeParticipantData": {
        "properties": {
          "signature": {
            "$ref": "#/components/schemas/EnrichedSignatureSchema",
            "nullable": true
          },
          "user_type": {
            "type": "string",
            "const": "native",
            "title": "User Type",
            "description": "Тип пользователя",
            "default": "native"
          },
          "ati_id": {
            "type": "string",
            "nullable": true,
            "title": "Ati Id",
            "description": "Алиас фирмы участника"
          },
          "firm_name": {
            "type": "string",
            "nullable": true,
            "title": "Firm Name",
            "description": "Название фирмы участника"
          },
          "contact_id": {
            "type": "integer",
            "title": "Contact Id",
            "description": "ID контакта"
          },
          "contact_name": {
            "type": "string",
            "nullable": true,
            "title": "Contact Name",
            "description": "Название контакта участника"
          },
          "edo_user_id": {
            "type": "string",
            "nullable": true,
            "title": "Edo User Id",
            "description": "ID участника ЭДО"
          }
        },
        "type": "object",
        "required": [
          "ati_id",
          "firm_name",
          "contact_id",
          "contact_name",
          "edo_user_id"
        ],
        "title": "EnrichedNativeParticipantData"
      },
      "EnrichedRoamingParticipantData": {
        "properties": {
          "signature": {
            "$ref": "#/components/schemas/EnrichedSignatureSchema",
            "nullable": true
          },
          "user_type": {
            "type": "string",
            "const": "roaming",
            "title": "User Type",
            "description": "Тип пользователя",
            "default": "roaming"
          },
          "agent_name": {
            "type": "string",
            "title": "Agent Name",
            "description": "Название роуминговой фирмы"
          },
          "edo_user_id": {
            "type": "string",
            "title": "Edo User Id",
            "description": "ID участника ЭДО"
          },
          "roaming_provider_id": {
            "type": "string",
            "title": "Roaming Provider Id",
            "description": "ID роумингового оператора"
          },
          "roaming_provider_name": {
            "type": "string",
            "title": "Roaming Provider Name",
            "description": "Название роумингового оператора"
          }
        },
        "type": "object",
        "required": [
          "agent_name",
          "edo_user_id",
          "roaming_provider_id",
          "roaming_provider_name"
        ],
        "title": "EnrichedRoamingParticipantData"
      },
      "EnrichedSignatureSchema": {
        "properties": {
          "certificate_id": {
            "type": "string",
            "title": "Certificate Id",
            "description": "ID сертификата в sign_checker-е"
          },
          "mchd_id": {
            "type": "string",
            "nullable": true,
            "title": "Mchd Id",
            "description": "ID машиночитаемой доверенности"
          }
        },
        "type": "object",
        "required": [
          "certificate_id"
        ],
        "title": "EnrichedSignatureSchema"
      },
      "HadesHistoryRecordData": {
        "properties": {
          "document_type": {
            "$ref": "#/components/schemas/DocumentTypeEnum",
            "description": "Какой документ изменялся"
          },
          "action_type": {
            "$ref": "#/components/schemas/ActionTypeEnum",
            "description": "Какое действие было совершено"
          },
          "actor_type": {
            "$ref": "#/components/schemas/ActorTypeEnum",
            "description": "Кто совершил действие"
          },
          "created_at": {
            "type": "string",
            "format": "date-time",
            "title": "Created At",
            "description": "Временная отметка события"
          },
          "is_annulment": {
            "type": "boolean",
            "title": "Is Annulment",
            "description": "Признак, который указывает на предложение об аннулировании",
            "default": true
          },
          "comment": {
            "type": "string",
            "nullable": true,
            "title": "Comment"
          }
        },
        "type": "object",
        "required": [
          "document_type",
          "action_type",
          "actor_type"
        ],
        "title": "HadesHistoryRecordData"
      },
      "HistoryRecordData": {
        "properties": {
          "document_type": {
            "$ref": "#/components/schemas/DocumentTypeEnum",
            "description": "Какой документ изменялся"
          },
          "action_type": {
            "$ref": "#/components/schemas/ActionTypeEnum",
            "description": "Какое действие было совершено"
          },
          "actor_type": {
            "$ref": "#/components/schemas/ActorTypeEnum",
            "description": "Кто совершил действие"
          },
          "created_at": {
            "type": "string",
            "format": "date-time",
            "title": "Created At",
            "description": "Временная отметка события"
          }
        },
        "type": "object",
        "required": [
          "document_type",
          "action_type",
          "actor_type"
        ],
        "title": "HistoryRecordData"
      },
      "MCHDSchema": {
        "properties": {
          "mchd_id": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "title": "Mchd Id",
            "description": "ID машиночитаемой доверенности"
          },
          "mchd_issued_at": {
            "type": "string",
            "format": "date-time",
            "title": "Mchd Issued At",
            "description": "Дата выдачи доверенности"
          }
        },
        "type": "object",
        "required": [
          "mchd_id",
          "mchd_issued_at"
        ],
        "title": "MCHDSchema"
      },
      "NativeParticipantInputSchema": {
        "properties": {
          "type": {
            "type": "string",
            "const": "native",
            "title": "Type",
            "default": "native"
          },
          "account_id": {
            "type": "string",
            "title": "Account Id",
            "description": "ID аккаунта"
          },
          "contact_id": {
            "type": "integer",
            "title": "Contact Id",
            "description": "ID контакта"
          },
          "edo_user_id": {
            "type": "string",
            "nullable": true,
            "title": "Edo User Id",
            "description": "ID участника ЭДО"
          }
        },
        "type": "object",
        "required": [
          "account_id",
          "contact_id"
        ],
        "title": "NativeParticipantInputSchema"
      },
      "RoamingParticipantInputSchema": {
        "properties": {
          "type": {
            "type": "string",
            "const": "roaming",
            "title": "Type",
            "default": "roaming"
          },
          "edo_user_id": {
            "type": "string",
            "title": "Edo User Id",
            "description": "ID участника ЭДО"
          }
        },
        "type": "object",
        "required": [
          "edo_user_id"
        ],
        "title": "RoamingParticipantInputSchema"
      },
      "SargonDoctypeEnum": {
        "type": "string",
        "enum": [
          "upd_dop",
          "upd_schf",
          "upd_schfdop"
        ],
        "title": "SargonDoctypeEnum"
      },
      "UPDBuyerTitleV501FullSchema": {
        "properties": {
          "ид_файл": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ид Файл"
          },
          "верс_форм": {
            "type": "string",
            "const": "5.01",
            "title": "Верс Форм",
            "default": "5.01"
          },
          "верс_прог": {
            "type": "string",
            "maxLength": 40,
            "minLength": 1,
            "nullable": true,
            "title": "Верс Прог"
          },
          "св_уч_док_обор": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01__________________1"
          },
          "инф_пок": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_____________4"
          }
        },
        "type": "object",
        "required": [
          "ид_файл",
          "св_уч_док_обор",
          "инф_пок"
        ],
        "title": "UPDBuyerTitleV501FullSchema",
        "description": "Параметры в соответствии с приказом ФНС РФ от 19.12.2018 N ММВ-7-15/820 (<a href=\"https://www.nalog.gov.ru/rn77/related_activities/el_doc/el_bus_entities/8335278/\" target=\"_blank\" rel=\"noopener noreferrer\">nalog.gov.ru</a>, <a href=\"https://normativ.kontur.ru/document?moduleId=1&documentId=328588&rangeId=6504468\" target=\"_blank\" rel=\"noopener noreferrer\">normativ.kontur.ru</a>)"
      },
      "UPDBuyerTitleV501NullableSchema": {
        "properties": {
          "верс_форм": {
            "type": "string",
            "const": "5.01",
            "title": "Верс Форм"
          },
          "инф_пок": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01_____________4"
          }
        },
        "type": "object",
        "required": [
          "верс_форм"
        ],
        "title": "UPDBuyerTitleV501NullableSchema",
        "description": "Параметры в соответствии с приказом ФНС РФ от 19.12.2018 N ММВ-7-15/820 (<a href=\"https://www.nalog.gov.ru/rn77/related_activities/el_doc/el_bus_entities/8335278/\" target=\"_blank\" rel=\"noopener noreferrer\">nalog.gov.ru</a>, <a href=\"https://normativ.kontur.ru/document?moduleId=1&documentId=328588&rangeId=6504468\" target=\"_blank\" rel=\"noopener noreferrer\">normativ.kontur.ru</a>)"
      },
      "UPDBuyerTitleV503FullSchema": {
        "properties": {
          "ид_файл": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ид Файл"
          },
          "верс_форм": {
            "type": "string",
            "const": "5.03",
            "title": "Верс Форм",
            "default": "5.03"
          },
          "верс_прог": {
            "type": "string",
            "maxLength": 40,
            "minLength": 1,
            "title": "Верс Прог"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_______________3"
          }
        },
        "type": "object",
        "required": [
          "ид_файл",
          "верс_прог",
          "документ"
        ],
        "title": "UPDBuyerTitleV503FullSchema",
        "description": "Параметры в соответствии с приказом ФНС РФ от 19.12.2023 N ЕД-7-26/970 (<a href=\"https://www.nalog.gov.ru/rn77/related_activities/el_doc/el_bus_entities/14414412/\" target=\"_blank\" rel=\"noopener noreferrer\">nalog.gov.ru</a>, <a href=\"https://normativ.kontur.ru/document?moduleId=1&documentId=486791#h6112\" target=\"_blank\" rel=\"noopener noreferrer\">normativ.kontur.ru</a>)"
      },
      "UPDBuyerTitleV503NullableSchema": {
        "properties": {
          "верс_форм": {
            "type": "string",
            "const": "5.03",
            "title": "Верс Форм"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03_______________2"
          }
        },
        "type": "object",
        "required": [
          "верс_форм"
        ],
        "title": "UPDBuyerTitleV503NullableSchema",
        "description": "Параметры в соответствии с приказом ФНС РФ от 19.12.2023 N ЕД-7-26/970 (<a href=\"https://www.nalog.gov.ru/rn77/related_activities/el_doc/el_bus_entities/14414412/\" target=\"_blank\" rel=\"noopener noreferrer\">nalog.gov.ru</a>, <a href=\"https://normativ.kontur.ru/document?moduleId=1&documentId=486791#h6112\" target=\"_blank\" rel=\"noopener noreferrer\">normativ.kontur.ru</a>)"
      },
      "UPDFunctionEnum": {
        "type": "string",
        "enum": [
          "ДОП",
          "СЧФ",
          "СЧФДОП"
        ],
        "title": "UPDFunctionEnum"
      },
      "UPDSellerTitleV501FullSchema": {
        "properties": {
          "ид_файл": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ид Файл"
          },
          "верс_форм": {
            "type": "string",
            "const": "5.01",
            "title": "Верс Форм",
            "default": "5.01"
          },
          "верс_прог": {
            "type": "string",
            "maxLength": 40,
            "minLength": 1,
            "title": "Верс Прог"
          },
          "св_уч_док_обор": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01__________________1"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________11"
          }
        },
        "type": "object",
        "required": [
          "ид_файл",
          "верс_прог",
          "св_уч_док_обор",
          "документ"
        ],
        "title": "UPDSellerTitleV501FullSchema"
      },
      "UPDSellerTitleV501NullableSchema": {
        "properties": {
          "верс_форм": {
            "type": "string",
            "const": "5.01",
            "title": "Верс Форм"
          },
          "верс_прог": {
            "type": "string",
            "maxLength": 40,
            "minLength": 1,
            "nullable": true,
            "title": "Верс Прог"
          },
          "св_уч_док_обор": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01__________________1"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________11"
          }
        },
        "type": "object",
        "required": [
          "верс_форм"
        ],
        "title": "UPDSellerTitleV501NullableSchema"
      },
      "UPDSellerTitleV503FullSchema": {
        "properties": {
          "ид_файл": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ид Файл"
          },
          "верс_форм": {
            "type": "string",
            "const": "5.03",
            "title": "Верс Форм",
            "default": "5.03"
          },
          "верс_прог": {
            "type": "string",
            "maxLength": 40,
            "minLength": 1,
            "title": "Верс Прог"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________9"
          }
        },
        "type": "object",
        "required": [
          "ид_файл",
          "верс_прог",
          "документ"
        ],
        "title": "UPDSellerTitleV503FullSchema"
      },
      "UPDSellerTitleV503NullableSchema": {
        "properties": {
          "верс_форм": {
            "type": "string",
            "const": "5.03",
            "title": "Верс Форм"
          },
          "верс_прог": {
            "type": "string",
            "maxLength": 40,
            "minLength": 1,
            "nullable": true,
            "title": "Верс Прог"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________9"
          }
        },
        "type": "object",
        "required": [
          "верс_форм"
        ],
        "title": "UPDSellerTitleV503NullableSchema"
      },
      "app__schemas__upd_full__buyer_title_5_01_______": {
        "properties": {
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "title": "Иннюл"
          },
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "должн": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "title": "Должн"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "иннюл",
          "должн",
          "фио"
        ],
        "title": "ЮЛТип"
      },
      "app__schemas__upd_full__buyer_title_5_01________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "required": [
          "фамилия",
          "имя"
        ],
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_full__buyer_title_5_01________4___": {
        "properties": {
          "наим_док_опр_пр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 0,
            "nullable": true,
            "title": "Наим Док Опр Пр"
          },
          "функция": {
            "$ref": "#/components/schemas/UPDFunctionEnum",
            "maxLength": 6,
            "minLength": 1
          },
          "ном_сч_ф_инф_пр": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Сч Ф Инф Пр"
          },
          "дата_сч_ф_инф_пр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Сч Ф Инф Пр"
          },
          "вид_операции": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Операции"
          },
          "св_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_____________3"
          },
          "инф_пол_фхж4": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01___________4___",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "функция",
          "дата_сч_ф_инф_пр",
          "св_прин"
        ],
        "title": "СодФХЖ4Тип"
      },
      "app__schemas__upd_full__buyer_title_5_01___________1": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "фио"
        ],
        "title": "СвФЛТип",
        "description": "Сведения о физическом лице<br>• `иннфл`: ИНН<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_full__buyer_title_5_01___________2": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "title": "Иннфл"
          },
          "св_гос_рег_ип": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Св Гос Рег Ип"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "иннфл",
          "фио"
        ],
        "title": "СвИПТип",
        "description": "Сведения о индивидуальном предпринимателе<br>• `иннфл`: ИНН<br>• `св_гос_рег_ип`: Реквизиты свидетельства о государственной регистрации индивидуального предпринимателя<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_full__buyer_title_5_01___________4___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_____________"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ4Тип"
      },
      "app__schemas__upd_full__buyer_title_5_01_____________": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "title": "Значен"
          }
        },
        "type": "object",
        "required": [
          "идентиф",
          "значен"
        ],
        "title": "ТекстИнфТип"
      },
      "app__schemas__upd_full__buyer_title_5_01_____________1": {
        "properties": {
          "осн_довер_фл": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Фл"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "фио"
        ],
        "title": "ФЛПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_01_____________2": {
        "properties": {
          "пред_орг_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01__________________2",
            "nullable": true
          },
          "фл_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_____________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_full__buyer_title_5_01_____________3": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Сод Опер"
          },
          "дата_прин": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Прин"
          },
          "код_сод_опер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_______________",
            "nullable": true
          },
          "св_лиц_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_01_____________4": {
        "properties": {
          "кнд": {
            "type": "string",
            "const": "1115132",
            "title": "Кнд",
            "default": "1115132"
          },
          "дата_инф_пок": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Инф Пок"
          },
          "врем_инф_пок": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "pattern": "([0-1]{1}[0-9]{1}|2[0-3]{1})\\.([0-5]{1}[0-9]{1})\\.([0-5]{1}[0-9]{1})",
            "title": "Врем Инф Пок"
          },
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Экон Суб Сост"
          },
          "осн_довер_орг_сост": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Орг Сост"
          },
          "ид_инф_прод": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________________2"
          },
          "сод_фхж4": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________4___"
          },
          "инф_пок_гос_зак_казн": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_____________________",
            "nullable": true
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________________5"
            },
            "type": "array",
            "title": "Подписант"
          }
        },
        "type": "object",
        "required": [
          "дата_инф_пок",
          "врем_инф_пок",
          "наим_экон_суб_сост",
          "ид_инф_прод",
          "сод_фхж4",
          "подписант"
        ],
        "title": "ИнфПокТип"
      },
      "app__schemas__upd_full__buyer_title_5_01_______________": {
        "properties": {
          "код_итога": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "title": "Код Итога"
          },
          "наим_док_расх": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док Расх"
          },
          "вид_док_расх": {
            "type": "string",
            "enum": [
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Вид Док Расх"
          },
          "ном_док_расх": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Док Расх"
          },
          "дата_док_расх": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Док Расх"
          },
          "ид_файл_док_расх": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ид Файл Док Расх"
          }
        },
        "type": "object",
        "required": [
          "код_итога"
        ],
        "title": "КодСодОперТип"
      },
      "app__schemas__upd_full__buyer_title_5_01________________1": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "title": "Иннюл"
          },
          "ид_эдо": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "title": "Ид Эдо"
          }
        },
        "type": "object",
        "required": [
          "наим_орг",
          "иннюл",
          "ид_эдо"
        ],
        "title": "СвОЭДОтпрТип"
      },
      "app__schemas__upd_full__buyer_title_5_01________________2": {
        "properties": {
          "ид_файл_инф_пр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ид Файл Инф Пр"
          },
          "дата_файл_инф_пр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Файл Инф Пр"
          },
          "врем_файл_инф_пр": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "pattern": "([0-1]{1}[0-9]{1}|2[0-3]{1})\\.([0-5]{1}[0-9]{1})\\.([0-5]{1}[0-9]{1})",
            "title": "Врем Файл Инф Пр"
          },
          "эп": {
            "items": {
              "type": "string",
              "minLength": 1
            },
            "type": "array",
            "title": "Эп"
          }
        },
        "type": "object",
        "required": [
          "ид_файл_инф_пр",
          "дата_файл_инф_пр",
          "врем_файл_инф_пр",
          "эп"
        ],
        "title": "ИдИнфПродТип"
      },
      "app__schemas__upd_full__buyer_title_5_01________________3": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "title": "Осн Полн"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "осн_полн",
          "фио"
        ],
        "title": "РабОргПокТип"
      },
      "app__schemas__upd_full__buyer_title_5_01________________4": {
        "properties": {
          "раб_орг_пок": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________________3",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_____________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_01________________5": {
        "properties": {
          "обл_полн": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "title": "Обл Полн"
          },
          "статус": {
            "type": "string",
            "enum": [
              "3",
              "4",
              "5",
              "6"
            ],
            "title": "Статус"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Осн Полн"
          },
          "осн_полн_орг": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Орг"
          },
          "фл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01___________1",
            "nullable": true
          },
          "ип": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01___________2",
            "nullable": true
          },
          "юл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01_______",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "обл_полн",
          "статус",
          "осн_полн"
        ],
        "title": "ПодписантТип"
      },
      "app__schemas__upd_full__buyer_title_5_01__________________1": {
        "properties": {
          "ид_отпр": {
            "type": "string",
            "maxLength": 46,
            "minLength": 4,
            "title": "Ид Отпр"
          },
          "ид_пол": {
            "type": "string",
            "maxLength": 46,
            "minLength": 4,
            "title": "Ид Пол"
          },
          "св_оэд_отпр": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________________1",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "ид_отпр",
          "ид_пол"
        ],
        "title": "СвУчДокОборТип"
      },
      "app__schemas__upd_full__buyer_title_5_01__________________2": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_прин": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "title": "Наим Орг Прин"
          },
          "осн_довер_орг_прин": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Орг Прин"
          },
          "осн_полн_пред_прин": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Пред Прин"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "наим_орг_прин",
          "фио"
        ],
        "title": "ПредОргПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_01___________________": {
        "properties": {
          "ном_стр": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Ном Стр"
          },
          "код_объект_фаип": {
            "type": "string",
            "maxLength": 24,
            "minLength": 1,
            "nullable": true,
            "title": "Код Объект Фаип"
          },
          "вид_средств": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "title": "Вид Средств"
          },
          "код_пок_бюдж_класс": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "title": "Код Пок Бюдж Класс"
          },
          "код_цели_покуп": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Код Цели Покуп"
          },
          "сум_аванс": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Сум Аванс"
          }
        },
        "type": "object",
        "required": [
          "ном_стр",
          "вид_средств",
          "код_пок_бюдж_класс",
          "сум_аванс"
        ],
        "title": "ИнфСведДенОбязТип"
      },
      "app__schemas__upd_full__buyer_title_5_01_____________________": {
        "properties": {
          "ид_код_зак": {
            "type": "string",
            "maxLength": 36,
            "minLength": 1,
            "nullable": true,
            "title": "Ид Код Зак"
          },
          "лиц_счет_пок": {
            "type": "string",
            "maxLength": 11,
            "minLength": 11,
            "title": "Лиц Счет Пок"
          },
          "наим_фин_орг_пок": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "title": "Наим Фин Орг Пок"
          },
          "ном_реестр_зап_пок": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "title": "Ном Реестр Зап Пок"
          },
          "уч_ном_бюд_обяз_пок": {
            "type": "string",
            "maxLength": 19,
            "minLength": 16,
            "nullable": true,
            "title": "Уч Ном Бюд Обяз Пок"
          },
          "код_казнач_пок": {
            "type": "string",
            "maxLength": 4,
            "minLength": 4,
            "nullable": true,
            "title": "Код Казнач Пок"
          },
          "наим_казнач_пок": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Казнач Пок"
          },
          "октмо_пок": {
            "type": "string",
            "maxLength": 11,
            "minLength": 8,
            "pattern": "(?:[0-9]{8})|(?:[0-9]{11})",
            "title": "Октмо Пок"
          },
          "октмо_мес_пост": {
            "type": "string",
            "maxLength": 11,
            "minLength": 8,
            "pattern": "(?:[0-9]{8})|(?:[0-9]{11})",
            "nullable": true,
            "title": "Октмо Мес Пост"
          },
          "дата_опл_пред": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Опл Пред"
          },
          "уч_ном_ден_обяз": {
            "type": "string",
            "maxLength": 22,
            "minLength": 22,
            "nullable": true,
            "title": "Уч Ном Ден Обяз"
          },
          "очер_плат": {
            "type": "string",
            "maxLength": 1,
            "minLength": 1,
            "nullable": true,
            "title": "Очер Плат"
          },
          "вид_плат": {
            "type": "string",
            "enum": [
              "0",
              "4"
            ],
            "nullable": true,
            "title": "Вид Плат"
          },
          "инф_свед_ден_обяз": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_01___________________"
            },
            "type": "array",
            "title": "Инф Свед Ден Обяз"
          }
        },
        "type": "object",
        "required": [
          "лиц_счет_пок",
          "наим_фин_орг_пок",
          "ном_реестр_зап_пок",
          "октмо_пок",
          "инф_свед_ден_обяз"
        ],
        "title": "ИнфПокГосЗакКазнТип"
      },
      "app__schemas__upd_full__buyer_title_5_03________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "required": [
          "фамилия",
          "имя"
        ],
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_full__buyer_title_5_03________4___": {
        "properties": {
          "наим_док_опр_пр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Док Опр Пр"
          },
          "функция": {
            "$ref": "#/components/schemas/UPDFunctionEnum",
            "maxLength": 6,
            "minLength": 1
          },
          "пор_ном_док_инф_пр": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Пор Ном Док Инф Пр"
          },
          "дата_док_инф_пр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Док Инф Пр"
          },
          "вид_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Опер"
          },
          "св_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_____________3"
          },
          "инф_пол_фхж4": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03___________4___",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "наим_док_опр_пр",
          "функция",
          "дата_док_инф_пр",
          "св_прин"
        ],
        "title": "СодФХЖ4Тип"
      },
      "app__schemas__upd_full__buyer_title_5_03___________4___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_______________2"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ4Тип"
      },
      "app__schemas__upd_full__buyer_title_5_03____________": {
        "properties": {
          "рекв_наим_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Рекв Наим Док"
          },
          "рекв_номер_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Рекв Номер Док"
          },
          "рекв_дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Рекв Дата Док"
          },
          "рекв_ид_файл_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Файл Док"
          },
          "рекв_ид_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Док"
          },
          "р_ид_сист_хран_д": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Р Ид Сист Хран Д"
          },
          "рекв_урл_сист_док": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Урл Сист Док"
          },
          "рекв_доп_свед_док": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Доп Свед Док"
          },
          "рекв_ид_рек_сост": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________________1"
            },
            "type": "array",
            "title": "Рекв Ид Рек Сост",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "рекв_наим_док",
          "рекв_номер_док",
          "рекв_дата_док"
        ],
        "title": "РеквДокТип",
        "description": "Реквизиты документа<br>• `рекв_наим_док`: Наименование документа<br>• `рекв_номер_док`: Номер документа<br>• `рекв_дата_док`: Дата документа<br>• `рекв_ид_файл_док`: Идентификатор файла обмена документа, подписанного первой стороной<br>• `рекв_ид_док`: Идентификатор документа<br>• `р_ид_сист_хран_д`: Идентифицирующая информация об информационной системе, в которой осуществляется хранение документа, необходимая для запроса информации из информационной системы<br>• `рекв_урл_сист_док`: Сведения в формате URL об информационной системе, которая предоставляет техническую возможность получения информации о документе<br>• `рекв_доп_свед_док`: Дополнительные сведения<br>• `рекв_ид_рек_сост`: Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ"
      },
      "app__schemas__upd_full__buyer_title_5_03_____________1": {
        "properties": {
          "иннфл_прин": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл Прин"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_довер_фл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03____________",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________"
          }
        },
        "type": "object",
        "required": [
          "фио"
        ],
        "title": "ФЛПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_03_____________2": {
        "properties": {
          "пред_орг_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________________",
            "nullable": true
          },
          "фл_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_____________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_full__buyer_title_5_03_____________3": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Сод Опер"
          },
          "дата_прин": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Прин"
          },
          "код_сод_опер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_________________1"
          },
          "св_лиц_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________________4",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "дата_прин",
          "код_сод_опер"
        ],
        "title": "СвПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_03_______________1": {
        "properties": {
          "ид_стат": {
            "type": "string",
            "enum": [
              "ИО",
              "ИГ"
            ],
            "title": "Ид Стат"
          },
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "title": "Код Стр"
          },
          "наим_стран": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Стран"
          },
          "наим": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим"
          },
          "идентиф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "required": [
          "ид_стат",
          "код_стр",
          "наим_стран",
          "наим"
        ],
        "title": "СвИнНеУчТип",
        "description": "Сведения об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `ид_стат`: Идентификация статуса<br>• `код_стр`: Код страны<br>• `наим_стран`: Наименование страны<br>• `наим`: Наименование иностранной организации полное/Фамилия, имя, отчество (при наличии) иностранного гражданина<br>• `идентиф`: Идентификатор иностранной организации (иностранного гражданина)<br>• `иные_свед`: Иные сведения для однозначной идентификации иностранной организации (иностранного гражданина)"
      },
      "app__schemas__upd_full__buyer_title_5_03_______________2": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "title": "Значен"
          }
        },
        "type": "object",
        "required": [
          "идентиф",
          "значен"
        ],
        "title": "ТекстИнфТип"
      },
      "app__schemas__upd_full__buyer_title_5_03_______________3": {
        "properties": {
          "кнд": {
            "type": "string",
            "const": "1115132",
            "title": "Кнд",
            "default": "1115132"
          },
          "уид": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Уид"
          },
          "дата_инф_пок": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Инф Пок"
          },
          "врем_инф_пок": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "pattern": "([0-1]{1}[0-9]{1}|2[0-3]{1})\\.([0-5]{1}[0-9]{1})\\.([0-5]{1}[0-9]{1})",
            "title": "Врем Инф Пок"
          },
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Экон Суб Сост"
          },
          "ид_инф_прод": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________________2"
          },
          "сод_фхж4": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________4___"
          },
          "инф_пок_за_госк_казн": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_____________________",
            "nullable": true
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________________6"
            },
            "type": "array",
            "title": "Подписант"
          },
          "осн_довер_орг_сост": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03____________",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "дата_инф_пок",
          "врем_инф_пок",
          "ид_инф_прод",
          "сод_фхж4",
          "подписант"
        ],
        "title": "ДокументТип"
      },
      "app__schemas__upd_full__buyer_title_5_03________________": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_прин": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Орг Прин"
          },
          "инн_орг_прин": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Инн Орг Прин"
          },
          "осн_довер_орг_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03____________",
            "nullable": true
          },
          "осн_полн_пред_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03____________",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "наим_орг_прин",
          "фио"
        ],
        "title": "ПредОргПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_03________________1": {
        "properties": {
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "данн_ино": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_______________1",
            "nullable": true
          },
          "наим_оив": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Оив"
          }
        },
        "type": "object",
        "title": "ИдРекСостТип",
        "description": "Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ<br>• `иннюл`: ИНН организации, состоящей на учете в налоговом органе<br>• `иннфл`: ИНН физического лица, в том числе индивидуального предпринимателя<br>• `данн_ино`: Данные об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `наим_оив`: Краткое наименование органа исполнительной власти (специализированной уполномоченной организации), выдавшего документ"
      },
      "app__schemas__upd_full__buyer_title_5_03________________2": {
        "properties": {
          "ид_файл_инф_пр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ид Файл Инф Пр"
          },
          "дата_файл_инф_пр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Файл Инф Пр"
          },
          "врем_файл_инф_пр": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "pattern": "([0-1]{1}[0-9]{1}|2[0-3]{1})\\.([0-5]{1}[0-9]{1})\\.([0-5]{1}[0-9]{1})",
            "title": "Врем Файл Инф Пр"
          },
          "эп": {
            "items": {
              "type": "string",
              "minLength": 1
            },
            "type": "array",
            "title": "Эп"
          }
        },
        "type": "object",
        "required": [
          "ид_файл_инф_пр",
          "дата_файл_инф_пр",
          "врем_файл_инф_пр",
          "эп"
        ],
        "title": "ИдИнфПродТип"
      },
      "app__schemas__upd_full__buyer_title_5_03________________3": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "фио"
        ],
        "title": "РабОргПокТип"
      },
      "app__schemas__upd_full__buyer_title_5_03________________4": {
        "properties": {
          "раб_орг_пок": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________________3",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_____________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПринТип"
      },
      "app__schemas__upd_full__buyer_title_5_03________________5": {
        "properties": {
          "ном_довер": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "title": "Ном Довер"
          },
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "дата_вн_рег_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Вн Рег Довер"
          },
          "ид_сист_хран": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "title": "Ид Сист Хран"
          },
          "урл_сист": {
            "type": "string",
            "nullable": true,
            "title": "Урл Сист"
          }
        },
        "type": "object",
        "required": [
          "ном_довер",
          "дата_выд_довер",
          "ид_сист_хран"
        ],
        "title": "СвДоверЭлТип"
      },
      "app__schemas__upd_full__buyer_title_5_03________________6": {
        "properties": {
          "должн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должн"
          },
          "тип_подпис": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Тип Подпис"
          },
          "дата_под_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Под Док"
          },
          "спос_подт_полном": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "title": "Спос Подт Полном"
          },
          "доп_свед_подп": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Свед Подп"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________"
          },
          "св_довер_эл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________________5"
            },
            "type": "array",
            "title": "Св Довер Эл",
            "default": []
          },
          "св_довер_бум": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03_________________2"
            },
            "type": "array",
            "title": "Св Довер Бум",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "спос_подт_полном",
          "фио"
        ],
        "title": "ПодписантТип"
      },
      "app__schemas__upd_full__buyer_title_5_03_________________1": {
        "properties": {
          "код_итога": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "title": "Код Итога"
          },
          "рекв_док_расх": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03____________",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "код_итога"
        ],
        "title": "КодСодОперТип"
      },
      "app__schemas__upd_full__buyer_title_5_03_________________2": {
        "properties": {
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Вн Ном Довер"
          },
          "св_ид_довер": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Ид Довер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "дата_выд_довер",
          "вн_ном_довер"
        ],
        "title": "СвДоверБумТип"
      },
      "app__schemas__upd_full__buyer_title_5_03___________________": {
        "properties": {
          "ном_стр": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Ном Стр"
          },
          "код_объект_фаип": {
            "type": "string",
            "maxLength": 24,
            "minLength": 1,
            "nullable": true,
            "title": "Код Объект Фаип"
          },
          "вид_средств": {
            "type": "string",
            "enum": [
              "1",
              "3",
              "4",
              "5",
              "6"
            ],
            "title": "Вид Средств"
          },
          "код_пок_бюдж_класс": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "title": "Код Пок Бюдж Класс"
          },
          "код_цели_покуп": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Код Цели Покуп"
          },
          "сум_аванс": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Сум Аванс"
          }
        },
        "type": "object",
        "required": [
          "ном_стр",
          "вид_средств",
          "код_пок_бюдж_класс",
          "сум_аванс"
        ],
        "title": "ИнфСведДенОбязТип"
      },
      "app__schemas__upd_full__buyer_title_5_03_____________________": {
        "properties": {
          "ид_код_зак": {
            "type": "string",
            "maxLength": 36,
            "minLength": 1,
            "nullable": true,
            "title": "Ид Код Зак"
          },
          "лиц_счет_пок": {
            "type": "string",
            "maxLength": 11,
            "minLength": 11,
            "title": "Лиц Счет Пок"
          },
          "наим_фин_орг_пок": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "title": "Наим Фин Орг Пок"
          },
          "ном_реестр_зап_пок": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "title": "Ном Реестр Зап Пок"
          },
          "уч_ном_бюд_обяз_пок": {
            "type": "string",
            "maxLength": 19,
            "minLength": 16,
            "nullable": true,
            "title": "Уч Ном Бюд Обяз Пок"
          },
          "код_казнач_пок": {
            "type": "string",
            "maxLength": 4,
            "minLength": 4,
            "nullable": true,
            "title": "Код Казнач Пок"
          },
          "наим_казнач_пок": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Казнач Пок"
          },
          "октмо_пок": {
            "type": "string",
            "maxLength": 11,
            "minLength": 8,
            "pattern": "(?:[0-9]{8})|(?:[0-9]{11})",
            "title": "Октмо Пок"
          },
          "октмо_мес_пост": {
            "type": "string",
            "maxLength": 11,
            "minLength": 8,
            "pattern": "(?:[0-9]{8})|(?:[0-9]{11})",
            "nullable": true,
            "title": "Октмо Мес Пост"
          },
          "дата_опл_пред": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Опл Пред"
          },
          "уч_ном_ден_обяз": {
            "type": "string",
            "maxLength": 22,
            "minLength": 22,
            "nullable": true,
            "title": "Уч Ном Ден Обяз"
          },
          "очер_плат": {
            "type": "string",
            "maxLength": 1,
            "minLength": 1,
            "nullable": true,
            "title": "Очер Плат"
          },
          "вид_плат": {
            "type": "string",
            "enum": [
              "0",
              "4"
            ],
            "nullable": true,
            "title": "Вид Плат"
          },
          "инф_свед_ден_обяз": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__buyer_title_5_03___________________"
            },
            "type": "array",
            "title": "Инф Свед Ден Обяз"
          }
        },
        "type": "object",
        "required": [
          "лиц_счет_пок",
          "наим_фин_орг_пок",
          "ном_реестр_зап_пок",
          "октмо_пок",
          "инф_свед_ден_обяз"
        ],
        "title": "ИнфПокЗаГоскКазнТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______": {
        "properties": {
          "гос_рег_ип_выд_дов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Гос Рег Ип Выд Дов"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "title": "Иннюл"
          },
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "должн": {
            "type": "string",
            "maxLength": 128,
            "minLength": 0,
            "title": "Должн"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "иннюл",
          "должн",
          "фио"
        ],
        "title": "ЮЛТип"
      },
      "app__schemas__upd_full__seller_title_5_01________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "required": [
          "фамилия",
          "имя"
        ],
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_full__seller_title_5_01__________1___": {
        "properties": {
          "ид_гос_кон": {
            "type": "string",
            "maxLength": 25,
            "minLength": 20,
            "nullable": true,
            "title": "Ид Гос Кон"
          },
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          },
          "курс_вал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 4,
            "max_digits": 10,
            "nullable": true,
            "title": "Курс Вал"
          },
          "обст_форм_счф": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6",
              "7",
              "8"
            ],
            "nullable": true,
            "title": "Обст Форм Счф"
          },
          "инф_прод_гос_зак_казн": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01______________________",
            "nullable": true
          },
          "св_фактор": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________2",
            "nullable": true
          },
          "осн_уст_ден_треб": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ДопСвФХЖ1Тип"
      },
      "app__schemas__upd_full__seller_title_5_01___________1": {
        "properties": {
          "св_ип": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________2",
            "nullable": true
          },
          "св_юл_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_____________1",
            "nullable": true
          },
          "св_ин_не_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________3",
            "nullable": true
          },
          "св_фл_участ_фхж": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИдСвТип"
      },
      "app__schemas__upd_full__seller_title_5_01___________1___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ1Тип"
      },
      "app__schemas__upd_full__seller_title_5_01___________2": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "деф_иннфл": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Иннфл"
          },
          "св_гос_рег_ип": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Св Гос Рег Ип"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "фио"
        ],
        "title": "СвИПТип",
        "description": "Сведения об индивидуальном предпринимателе<br>• `иннфл`: ИНН<br>• `деф_иннфл`: ИНН при составлении документа с Функция=СЧФ или Функция=СЧФДОП налоговым агентом, указанным в пунктах 2 и 3 статьи 161 НК РФ, в части информации о продавце/грузоотправителе<br>• `св_гос_рег_ип`: Реквизиты свидетельства о государственной регистрации индивидуального предпринимателя<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_full__seller_title_5_01___________3": {
        "properties": {
          "гос_рег_ип_выд_дов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Гос Рег Ип Выд Дов"
          },
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "фио"
        ],
        "title": "СвФЛТип",
        "description": "Сведения о физическом лице<br>• `гос_рег_ип_выд_дов`: Реквизиты свидетельства о государственной регистрации индивидуального предпринимателя, выдавшего доверенность физическому лицу на подписание счета-фактуры<br>• `иннфл`: ИНН физического лица<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_full__seller_title_5_01___________3___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ3Тип"
      },
      "app__schemas__upd_full__seller_title_5_01___________4": {
        "properties": {
          "код_происх": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Происх"
          },
          "деф_код_происх": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Код Происх"
          },
          "номер_тд": {
            "type": "string",
            "maxLength": 29,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Тд"
          }
        },
        "type": "object",
        "title": "СвТДТип"
      },
      "app__schemas__upd_full__seller_title_5_01____________1": {
        "properties": {
          "адр_рф": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01____________2",
            "nullable": true
          },
          "адр_инф": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_____________2",
            "nullable": true
          },
          "код_гар": {
            "type": "string",
            "maxLength": 36,
            "minLength": 1,
            "nullable": true,
            "title": "Код Гар"
          }
        },
        "type": "object",
        "title": "АдресТип",
        "description": "Сведения об адресе<br>• `адр_рф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительства индивидуального предпринимателя (реквизиты адреса на территории Российской Федерации)<br>• `адр_инф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительства индивидуального предпринимателя (информация об адресе, в том числе об адресе за пределами территории Российской Федерации)<br>• `код_гар`: Уникальный номер адреса объекта адресации в государственном адресном реестре"
      },
      "app__schemas__upd_full__seller_title_5_01____________2": {
        "properties": {
          "индекс": {
            "type": "string",
            "maxLength": 6,
            "minLength": 6,
            "pattern": "[0-9]{6}",
            "nullable": true,
            "title": "Индекс"
          },
          "код_регион": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2,
            "pattern": "[0-9]{2}",
            "title": "Код Регион"
          },
          "район": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Район"
          },
          "город": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Город"
          },
          "насел_пункт": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Насел Пункт"
          },
          "улица": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Улица"
          },
          "дом": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Дом"
          },
          "корпус": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Корпус"
          },
          "кварт": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Кварт"
          }
        },
        "type": "object",
        "required": [
          "код_регион"
        ],
        "title": "АдрРФТип",
        "description": "Адрес в Российской Федерации<br>• `индекс`: Индекс<br>• `код_регион`: Код региона<br>• `район`: Район<br>• `город`: Город<br>• `насел_пункт`: Населенный пункт<br>• `улица`: Улица<br>• `дом`: Дом<br>• `корпус`: Корпус<br>• `кварт`: Квартира"
      },
      "app__schemas__upd_full__seller_title_5_01____________3": {
        "properties": {
          "номер_прд": {
            "type": "string",
            "maxLength": 30,
            "minLength": 1,
            "title": "Номер Прд"
          },
          "дата_прд": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Прд"
          },
          "сумма_прд": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сумма Прд"
          }
        },
        "type": "object",
        "required": [
          "номер_прд",
          "дата_прд"
        ],
        "title": "СвПРДТип"
      },
      "app__schemas__upd_full__seller_title_5_01____________4": {
        "properties": {
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_довер_фл": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Фл"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "фио"
        ],
        "title": "ФЛПерТип"
      },
      "app__schemas__upd_full__seller_title_5_01____________5": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Сод Опер"
          },
          "вид_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Опер"
          },
          "дата_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер"
          },
          "дата_нач": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Нач"
          },
          "дата_окон": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Окон"
          },
          "осн_пер": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________________1"
            },
            "type": "array",
            "title": "Осн Пер"
          },
          "св_лиц_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________8",
            "nullable": true
          },
          "тран_груз": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________10",
            "nullable": true
          },
          "св_пер_вещи": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________________3",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "сод_опер",
          "осн_пер"
        ],
        "title": "СвПерТип"
      },
      "app__schemas__upd_full__seller_title_5_01_____________1": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "деф_иннюл": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Иннюл"
          },
          "кпп": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})([0-9]{2})([0-9A-Z]{2})([0-9]{3})",
            "nullable": true,
            "title": "Кпп"
          }
        },
        "type": "object",
        "required": [
          "наим_орг"
        ],
        "title": "СвЮЛУчТип"
      },
      "app__schemas__upd_full__seller_title_5_01_____________2": {
        "properties": {
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "title": "Код Стр"
          },
          "адр_текст": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Адр Текст"
          }
        },
        "type": "object",
        "required": [
          "код_стр",
          "адр_текст"
        ],
        "title": "АдрИнфТип",
        "description": "Информация об адресе, в том числе об адресе за пределами территории Российской Федерации<br>• `код_стр`: Код страны<br>• `адр_текст`: Адрес"
      },
      "app__schemas__upd_full__seller_title_5_01_____________3": {
        "properties": {
          "наим_банк": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Банк"
          },
          "бик": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "[0-9]{9}",
            "nullable": true,
            "title": "Бик"
          },
          "кор_счет": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Кор Счет"
          }
        },
        "type": "object",
        "title": "СвБанкТип"
      },
      "app__schemas__upd_full__seller_title_5_01_____________4": {
        "properties": {
          "сум_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Нал"
          },
          "без_ндс": {
            "type": "string",
            "const": "без НДС",
            "nullable": true,
            "title": "Без Ндс"
          },
          "деф_ндс": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ндс"
          }
        },
        "type": "object",
        "title": "СумНДСТип",
        "description": "Сумма НДС<br>• `сум_нал`: Значение<br>• `без_ндс`: Без НДС<br>• `деф_ндс`: Знак прочерка"
      },
      "app__schemas__upd_full__seller_title_5_01_____________5": {
        "properties": {
          "груз_отпр": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________2",
            "nullable": true
          },
          "он_же": {
            "type": "string",
            "const": "он же",
            "nullable": true,
            "title": "Он Же"
          }
        },
        "type": "object",
        "title": "ГрузОтТип"
      },
      "app__schemas__upd_full__seller_title_5_01_____________6": {
        "properties": {
          "пред_орг_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_________________4",
            "nullable": true
          },
          "фл_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01____________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_full__seller_title_5_01______________1": {
        "properties": {
          "тлф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Тлф"
          },
          "эл_почта": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Эл Почта"
          }
        },
        "type": "object",
        "title": "КонтактТип",
        "description": "Контактные данные<br>• `тлф`: Номер контактного телефона/факс<br>• `эл_почта`: Адрес электронной почты"
      },
      "app__schemas__upd_full__seller_title_5_01______________2": {
        "properties": {
          "ном_испр_сч_ф": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 3,
            "nullable": true,
            "title": "Ном Испр Сч Ф"
          },
          "деф_ном_испр_сч_ф": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ном Испр Сч Ф"
          },
          "дата_испр_сч_ф": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Испр Сч Ф"
          },
          "деф_дата_испр_сч_ф": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Дата Испр Сч Ф"
          }
        },
        "type": "object",
        "title": "ИспрСчФТип"
      },
      "app__schemas__upd_full__seller_title_5_01______________3": {
        "properties": {
          "ном_стр": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Ном Стр"
          },
          "наим_тов": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Тов"
          },
          "океи__тов": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "nullable": true,
            "title": "Океи  Тов"
          },
          "деф_океи__тов": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Океи  Тов"
          },
          "кол_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Тов"
          },
          "цена_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов"
          },
          "ст_тов_без_ндс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс"
          },
          "нал_ст": {
            "type": "string",
            "enum": [
              "0%",
              "5%",
              "7%",
              "9,09%",
              "10%",
              "16,67%",
              "18,03%",
              "20%",
              "22%",
              "5/105",
              "7/107",
              "10/110",
              "20/120",
              "22/122",
              "без НДС",
              "НДС исчисляется налоговым агентом"
            ],
            "title": "Нал Ст"
          },
          "ст_тов_уч_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал"
          },
          "деф_ст_тов_уч_нал": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ст Тов Уч Нал"
          },
          "акциз": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________6"
          },
          "сум_нал": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_____________4"
          },
          "св_тд": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________4"
            },
            "type": "array",
            "title": "Св Тд",
            "default": []
          },
          "доп_свед_тов": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_________________1",
            "nullable": true
          },
          "инф_пол_фхж2": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________4"
            },
            "type": "array",
            "title": "Инф Пол Фхж2",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "ном_стр",
          "нал_ст",
          "акциз",
          "сум_нал"
        ],
        "title": "СведТовТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________1": {
        "properties": {
          "номер_счета": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Счета"
          },
          "св_банк": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_____________3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "БанкРеквТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________10": {
        "properties": {
          "св_тран_груз": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Тран Груз"
          },
          "тран_накл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________9"
            },
            "type": "array",
            "title": "Тран Накл",
            "default": []
          },
          "перевозчик": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ТранГрузТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________11": {
        "properties": {
          "кнд": {
            "type": "string",
            "const": "1115131",
            "title": "Кнд",
            "default": "1115131"
          },
          "функция": {
            "$ref": "#/components/schemas/UPDFunctionEnum"
          },
          "по_факт_хж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "По Факт Хж"
          },
          "наим_док_опр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док Опр"
          },
          "дата_инф_пр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Инф Пр"
          },
          "врем_инф_пр": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "pattern": "([0-1]{1}[0-9]{1}|2[0-3]{1})\\.([0-5]{1}[0-9]{1})\\.([0-5]{1}[0-9]{1})",
            "title": "Врем Инф Пр"
          },
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Экон Суб Сост"
          },
          "осн_довер_орг_сост": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Орг Сост"
          },
          "согл_стр_доп_инф": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "nullable": true,
            "title": "Согл Стр Доп Инф"
          },
          "св_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________5"
          },
          "табл_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_________________2",
            "nullable": true
          },
          "св_прод_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________________4",
            "nullable": true
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________________5"
            },
            "type": "array",
            "title": "Подписант"
          }
        },
        "type": "object",
        "required": [
          "функция",
          "дата_инф_пр",
          "врем_инф_пр",
          "наим_экон_суб_сост",
          "св_сч_факт",
          "подписант"
        ],
        "title": "ДокументТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________2": {
        "properties": {
          "окпо": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Окпо"
          },
          "структ_подр": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Структ Подр"
          },
          "инф_для_участ": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Инф Для Участ"
          },
          "кратк_назв": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Кратк Назв"
          },
          "ид_св": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________1"
          },
          "адрес": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01____________1",
            "nullable": true
          },
          "контакт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01______________1",
            "nullable": true
          },
          "банк_рекв": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________1",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "ид_св"
        ],
        "title": "УчастникТип",
        "description": "Сведения об участнике факта хозяйственной жизни<br>• `окпо`: Код в общероссийском классификаторе предприятий и организаций<br>• `структ_подр`: Структурное подразделение<br>• `инф_для_участ`: Информация для участника документооборота<br>• `кратк_назв`: Краткое название<br>• `ид_св`: Идентификационные сведения<br>• `адрес`: Адрес<br>• `контакт`: Контактные данные<br>• `банк_рекв`: Банковские реквизиты"
      },
      "app__schemas__upd_full__seller_title_5_01_______________3": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Орг"
          },
          "идентиф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "required": [
          "наим_орг"
        ],
        "title": "СвИнНеУчТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________4": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "title": "Значен"
          }
        },
        "type": "object",
        "required": [
          "идентиф",
          "значен"
        ],
        "title": "ТекстИнфТип",
        "description": "Текстовая информация<br>• `идентиф`: Идентификатор<br>• `значен`: Значение"
      },
      "app__schemas__upd_full__seller_title_5_01_______________5": {
        "properties": {
          "номер_сч_ф": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Номер Сч Ф"
          },
          "дата_сч_ф": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Сч Ф"
          },
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "title": "Код Окв"
          },
          "испр_сч_ф": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01______________2",
            "nullable": true
          },
          "св_прод": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________2"
            },
            "type": "array",
            "title": "Св Прод"
          },
          "груз_от": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_____________5"
            },
            "type": "array",
            "title": "Груз От",
            "default": []
          },
          "груз_получ": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________2"
            },
            "type": "array",
            "title": "Груз Получ",
            "default": []
          },
          "св_прд": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01____________3"
            },
            "type": "array",
            "title": "Св Прд",
            "default": []
          },
          "св_покуп": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________2"
            },
            "type": "array",
            "title": "Св Покуп"
          },
          "доп_св_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01__________1___",
            "nullable": true
          },
          "док_подтв_отгр": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_________________"
            },
            "type": "array",
            "title": "Док Подтв Отгр",
            "default": []
          },
          "инф_пол_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________1___",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "номер_сч_ф",
          "дата_сч_ф",
          "код_окв",
          "св_прод",
          "св_покуп"
        ],
        "title": "СвСчФактТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________6": {
        "properties": {
          "сум_акциз": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Акциз"
          },
          "без_акциз": {
            "type": "string",
            "const": "без акциза",
            "nullable": true,
            "title": "Без Акциз"
          }
        },
        "type": "object",
        "title": "СумАкцизТип",
        "description": "Сумма акциза:<br>• `сум_акциз`: Сумма акциза<br>• `без_акциз`: Без акциза"
      },
      "app__schemas__upd_full__seller_title_5_01_______________7": {
        "properties": {
          "ст_тов_без_ндс_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Всего"
          },
          "ст_тов_уч_нал_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал Всего"
          },
          "деф_ст_тов_уч_нал_всего": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ст Тов Уч Нал Всего"
          },
          "сум_нал_всего": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_____________4"
          },
          "кол_нетто_вс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Нетто Вс"
          }
        },
        "type": "object",
        "required": [
          "сум_нал_всего"
        ],
        "title": "ВсегоОплТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________8": {
        "properties": {
          "раб_орг_прод": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_________________3",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_____________6",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПерТип"
      },
      "app__schemas__upd_full__seller_title_5_01_______________9": {
        "properties": {
          "ном_тран_накл": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ном Тран Накл"
          },
          "дата_тран_накл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Тран Накл"
          }
        },
        "type": "object",
        "required": [
          "ном_тран_накл",
          "дата_тран_накл"
        ],
        "title": "ТранНаклТип"
      },
      "app__schemas__upd_full__seller_title_5_01________________1": {
        "properties": {
          "наим_осн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Осн"
          },
          "ном_осн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Осн"
          },
          "дата_осн": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Осн"
          },
          "доп_св_осн": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Св Осн"
          },
          "идент_осн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идент Осн"
          }
        },
        "type": "object",
        "required": [
          "наим_осн"
        ],
        "title": "ОснованиеТип",
        "description": "Основание отгрузки (передачи, уступки)<br>• `наим_осн`: Наименование документа - основания<br>• `ном_осн`: Номер документа - основания<br>• `дата_осн`: Дата документа - основания<br>• `доп_св_осн`: Дополнительные сведения<br>• `идент_осн`: Идентификатор документа - основания"
      },
      "app__schemas__upd_full__seller_title_5_01________________2": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "title": "Иннюл"
          },
          "ид_эдо": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "title": "Ид Эдо"
          }
        },
        "type": "object",
        "required": [
          "наим_орг",
          "иннюл",
          "ид_эдо"
        ],
        "title": "СвОЭДОтпрТип"
      },
      "app__schemas__upd_full__seller_title_5_01________________3": {
        "properties": {
          "дата_пер_вещ": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер Вещ"
          },
          "св_пер_вещ": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Пер Вещ"
          }
        },
        "type": "object",
        "title": "СвПерВещиТип"
      },
      "app__schemas__upd_full__seller_title_5_01________________4": {
        "properties": {
          "св_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01____________5"
          },
          "инф_пол_фхж3": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________3___",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "св_пер"
        ],
        "title": "СвПродПерТип"
      },
      "app__schemas__upd_full__seller_title_5_01________________5": {
        "properties": {
          "обл_полн": {
            "type": "string",
            "enum": [
              "0",
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "title": "Обл Полн"
          },
          "статус": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4"
            ],
            "title": "Статус"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Осн Полн"
          },
          "осн_полн_орг": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Орг"
          },
          "фл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________3",
            "nullable": true
          },
          "ип": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01___________2",
            "nullable": true
          },
          "юл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "обл_полн",
          "статус",
          "осн_полн"
        ],
        "title": "ПодписантТип"
      },
      "app__schemas__upd_full__seller_title_5_01_________________": {
        "properties": {
          "наим_док_отгр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Док Отгр"
          },
          "ном_док_отгр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Ном Док Отгр"
          },
          "дата_док_отгр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Док Отгр"
          }
        },
        "type": "object",
        "required": [
          "наим_док_отгр",
          "ном_док_отгр"
        ],
        "title": "ДокПодтвОтгрТип"
      },
      "app__schemas__upd_full__seller_title_5_01_________________1": {
        "properties": {
          "пр_тов_раб": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "nullable": true,
            "title": "Пр Тов Раб"
          },
          "доп_призн": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Призн"
          },
          "наим_ед_изм": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Ед Изм"
          },
          "кр_наим_стр_пр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Кр Наим Стр Пр"
          },
          "надл_отп": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Надл Отп"
          },
          "характер_тов": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Характер Тов"
          },
          "сорт_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Сорт Тов"
          },
          "артикул_тов": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Артикул Тов"
          },
          "код_тов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Код Тов"
          },
          "код_кат": {
            "type": "string",
            "maxLength": 27,
            "minLength": 27,
            "nullable": true,
            "title": "Код Кат"
          },
          "код_вид_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "nullable": true,
            "title": "Код Вид Тов"
          },
          "свед_прослеж": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01__________________2"
            },
            "type": "array",
            "title": "Свед Прослеж",
            "default": []
          },
          "ном_сред_идент_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01____________________"
            },
            "type": "array",
            "title": "Ном Сред Идент Тов",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСведТовТип"
      },
      "app__schemas__upd_full__seller_title_5_01_________________2": {
        "properties": {
          "свед_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01______________3"
            },
            "type": "array",
            "title": "Свед Тов"
          },
          "всего_опл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01_______________7"
          }
        },
        "type": "object",
        "required": [
          "свед_тов",
          "всего_опл"
        ],
        "title": "ТаблСчФактТип"
      },
      "app__schemas__upd_full__seller_title_5_01_________________3": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "фио"
        ],
        "title": "РабОргПродТип"
      },
      "app__schemas__upd_full__seller_title_5_01_________________4": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_пер": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "title": "Наим Орг Пер"
          },
          "осн_довер_орг_пер": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Орг Пер"
          },
          "осн_полн_пред_пер": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Пред Пер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "наим_орг_пер",
          "фио"
        ],
        "title": "ПредОргПерТип"
      },
      "app__schemas__upd_full__seller_title_5_01__________________1": {
        "properties": {
          "ид_отпр": {
            "type": "string",
            "maxLength": 46,
            "minLength": 4,
            "title": "Ид Отпр"
          },
          "ид_пол": {
            "type": "string",
            "maxLength": 46,
            "minLength": 4,
            "title": "Ид Пол"
          },
          "св_оэд_отпр": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_01________________2",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "ид_отпр",
          "ид_пол"
        ],
        "title": "СвУчДокОборТип"
      },
      "app__schemas__upd_full__seller_title_5_01__________________2": {
        "properties": {
          "ном_тов_прослеж": {
            "type": "string",
            "maxLength": 29,
            "minLength": 1,
            "title": "Ном Тов Прослеж"
          },
          "ед_изм_прослеж": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "title": "Ед Изм Прослеж"
          },
          "наим_ед_изм_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Ед Изм Прослеж"
          },
          "кол_в_ед_прослеж": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Кол В Ед Прослеж"
          },
          "доп_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Прослеж"
          }
        },
        "type": "object",
        "required": [
          "ном_тов_прослеж",
          "ед_изм_прослеж",
          "наим_ед_изм_прослеж",
          "кол_в_ед_прослеж"
        ],
        "title": "СведПрослежТип"
      },
      "app__schemas__upd_full__seller_title_5_01____________________": {
        "properties": {
          "идент_транс_упак": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идент Транс Упак"
          },
          "киз": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Киз",
            "default": []
          },
          "ном_упак": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Ном Упак",
            "default": []
          }
        },
        "type": "object",
        "title": "НомСредИдентТовТип"
      },
      "app__schemas__upd_full__seller_title_5_01______________________": {
        "properties": {
          "дата_гос_конт": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Гос Конт"
          },
          "номер_гос_конт": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "title": "Номер Гос Конт"
          },
          "лиц_счет_прод": {
            "type": "string",
            "maxLength": 11,
            "minLength": 11,
            "nullable": true,
            "title": "Лиц Счет Прод"
          },
          "код_прод_бюдж_класс": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Прод Бюдж Класс"
          },
          "код_цели_прод": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Цели Прод"
          },
          "код_казнач_прод": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Код Казнач Прод"
          },
          "наим_казнач_прод": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Казнач Прод"
          }
        },
        "type": "object",
        "required": [
          "дата_гос_конт",
          "номер_гос_конт"
        ],
        "title": "ИнфПродГосЗакКазнТип"
      },
      "app__schemas__upd_full__seller_title_5_03________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "required": [
          "фамилия",
          "имя"
        ],
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_full__seller_title_5_03__________1___": {
        "properties": {
          "ид_гос_кон": {
            "type": "string",
            "maxLength": 25,
            "minLength": 20,
            "nullable": true,
            "title": "Ид Гос Кон"
          },
          "сп_обст_фсчф": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "nullable": true,
            "title": "Сп Обст Фсчф"
          },
          "сп_обст_фсчфдоп": {
            "type": "string",
            "maxLength": 5,
            "minLength": 5,
            "nullable": true,
            "title": "Сп Обст Фсчфдоп"
          },
          "сп_обст_фдоп": {
            "type": "string",
            "maxLength": 5,
            "minLength": 5,
            "nullable": true,
            "title": "Сп Обст Фдоп"
          },
          "вид_обяз": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________6"
            },
            "type": "array",
            "title": "Вид Обяз",
            "default": []
          },
          "инф_прод_за_госк_казн": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________________",
            "nullable": true
          },
          "св_фактор": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________2",
            "nullable": true
          },
          "осн_уст_ден_треб": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4",
            "nullable": true
          },
          "сопр_док_фхж": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Сопр Док Фхж",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСвФХЖ1Тип"
      },
      "app__schemas__upd_full__seller_title_5_03___________1": {
        "properties": {
          "св_ип": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03___________2",
            "nullable": true
          },
          "св_юл_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________1",
            "nullable": true
          },
          "св_ин_не_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________3",
            "nullable": true
          },
          "св_фл_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИдСвТип"
      },
      "app__schemas__upd_full__seller_title_5_03___________1___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ1Тип"
      },
      "app__schemas__upd_full__seller_title_5_03___________2": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "title": "Иннфл"
          },
          "св_гос_рег_ип": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Св Гос Рег Ип"
          },
          "огрнип": {
            "type": "string",
            "maxLength": 15,
            "minLength": 15,
            "pattern": "[0-9]{15}",
            "nullable": true,
            "title": "Огрнип"
          },
          "дата_огрнип": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Огрнип"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________"
          }
        },
        "type": "object",
        "required": [
          "иннфл",
          "фио"
        ],
        "title": "СвИПТип"
      },
      "app__schemas__upd_full__seller_title_5_03___________3": {
        "properties": {
          "код_происх": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Происх"
          },
          "номер_дт": {
            "type": "string",
            "maxLength": 29,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Дт"
          }
        },
        "type": "object",
        "title": "СвДТТип"
      },
      "app__schemas__upd_full__seller_title_5_03___________3___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ3Тип"
      },
      "app__schemas__upd_full__seller_title_5_03___________4": {
        "properties": {
          "св_тран": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Тран"
          },
          "инкотермс": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "nullable": true,
            "title": "Инкотермс"
          },
          "вер_инкотермс": {
            "type": "string",
            "maxLength": 4,
            "minLength": 4,
            "nullable": true,
            "title": "Вер Инкотермс"
          }
        },
        "type": "object",
        "title": "ТранТип"
      },
      "app__schemas__upd_full__seller_title_5_03____________1": {
        "properties": {
          "тип": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Тип"
          },
          "номер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Номер"
          }
        },
        "type": "object",
        "required": [
          "тип",
          "номер"
        ],
        "title": "НомерТип",
        "description": "Сведения о номере адресного элемента<br>• `тип`: Тип элемента<br>• `номер`: Номер элемента"
      },
      "app__schemas__upd_full__seller_title_5_03____________2": {
        "properties": {
          "глн_места": {
            "type": "string",
            "maxLength": 13,
            "minLength": 13,
            "nullable": true,
            "title": "Глн Места"
          },
          "адр_рф": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________3",
            "nullable": true
          },
          "адр_гар": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________3",
            "nullable": true
          },
          "адр_инф": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "АдресТип",
        "description": "Сведения об адресе (месте нахождения)<br>• `глн_места`: Глобальный номер места нахождения (GLN места)<br>• `адр_рф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства (по месту пребывания) индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_гар`: Адрес в соответствии с государственным адресным реестром, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительстварегистрации по месту жительства (по месту пребывания) индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_инф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительстварегистрации по месту жительства (по месту пребывания) индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (информация об адресе, в том числе об адресе за пределами территории Российской Федерации)"
      },
      "app__schemas__upd_full__seller_title_5_03____________3": {
        "properties": {
          "индекс": {
            "type": "string",
            "maxLength": 6,
            "minLength": 6,
            "pattern": "[0-9]{6}",
            "nullable": true,
            "title": "Индекс"
          },
          "код_регион": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2,
            "pattern": "[0-9]{2}",
            "title": "Код Регион"
          },
          "наим_регион": {
            "type": "string",
            "maxLength": 51,
            "minLength": 1,
            "title": "Наим Регион"
          },
          "район": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Район"
          },
          "город": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Город"
          },
          "насел_пункт": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Насел Пункт"
          },
          "улица": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Улица"
          },
          "дом": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Дом"
          },
          "корпус": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Корпус"
          },
          "кварт": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Кварт"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "required": [
          "код_регион",
          "наим_регион"
        ],
        "title": "АдрРФТип",
        "description": "Сведения об адресе в Российской Федерации, содержащиеся в ЕГРЮЛ<br>• `индекс`: Почтовый индекс<br>• `код_регион`: Код субъекта Российской Федерации<br>• `наим_регион`: Наименование субъекта Российской Федерации<br>• `район`: Район<br>• `город`: Город<br>• `насел_пункт`: Населенный пункт<br>• `улица`: Улица<br>• `дом`: Дом<br>• `корпус`: Корпус<br>• `кварт`: Квартира<br>• `иные_свед`: Иные сведения об адресе в Российской Федерации"
      },
      "app__schemas__upd_full__seller_title_5_03____________4": {
        "properties": {
          "номер_прд": {
            "type": "string",
            "maxLength": 30,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Прд"
          },
          "дата_прд": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Прд"
          },
          "сумма_прд": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сумма Прд"
          }
        },
        "type": "object",
        "title": "СвПРДТип"
      },
      "app__schemas__upd_full__seller_title_5_03____________5": {
        "properties": {
          "иннфл_пер": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл Пер"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_довер_фл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________"
          }
        },
        "type": "object",
        "required": [
          "фио"
        ],
        "title": "ФЛПерТип"
      },
      "app__schemas__upd_full__seller_title_5_03____________6": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Сод Опер"
          },
          "вид_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Опер"
          },
          "дата_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер"
          },
          "дата_нач_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Нач Пер"
          },
          "дата_окон_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Окон Пер"
          },
          "осн_пер": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Осн Пер",
            "default": []
          },
          "без_док_осн_пер": {
            "type": "string",
            "const": "1",
            "nullable": true,
            "title": "Без Док Осн Пер"
          },
          "св_лиц_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________8",
            "nullable": true
          },
          "тран": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03___________4",
            "nullable": true
          },
          "св_пер_вещи": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________________3",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "сод_опер"
        ],
        "title": "СвПерТип"
      },
      "app__schemas__upd_full__seller_title_5_03_____________1": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "title": "Иннюл"
          },
          "кпп": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})([0-9]{2})([0-9A-Z]{2})([0-9]{3})",
            "nullable": true,
            "title": "Кпп"
          }
        },
        "type": "object",
        "required": [
          "наим_орг",
          "иннюл"
        ],
        "title": "СвЮЛУчТип"
      },
      "app__schemas__upd_full__seller_title_5_03_____________2": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "ид_стат_л": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Ид Стат Л"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвФЛУчТип"
      },
      "app__schemas__upd_full__seller_title_5_03_____________3": {
        "properties": {
          "ид_ном": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "title": "Ид Ном"
          },
          "индекс": {
            "type": "string",
            "maxLength": 6,
            "minLength": 6,
            "nullable": true,
            "title": "Индекс"
          },
          "регион": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2,
            "pattern": "[0-9]{2}",
            "title": "Регион"
          },
          "наим_регион": {
            "type": "string",
            "maxLength": 51,
            "minLength": 1,
            "title": "Наим Регион"
          },
          "муницип_район": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________1",
            "nullable": true
          },
          "город_сел_поселен": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________1",
            "nullable": true
          },
          "населен_пункт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________3",
            "nullable": true
          },
          "эл_план_структур": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________1",
            "nullable": true
          },
          "эл_ул_дор_сети": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________1",
            "nullable": true
          },
          "земел_участок": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Земел Участок"
          },
          "здание": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________1"
            },
            "type": "array",
            "title": "Здание",
            "default": []
          },
          "помещ_здания": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________1",
            "nullable": true
          },
          "помещ_квартиры": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________1",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "ид_ном",
          "регион",
          "наим_регион"
        ],
        "title": "АдрГАРТип",
        "description": "Адрес в соответствии с государственным адресным реестром<br>• `ид_ном`: Уникальный номер адреса объекта адресации в государственном адресном реестре<br>• `индекс`: Почтовый индекс<br>• `регион`: Субъект Российской Федерации (код)<br>• `наим_регион`: Наименование субъекта Российской Федерации<br>• `муницип_район`: Муниципальный район/ городской округ/ внутригородская территория города федерального значения/ муниципальный округ/ федеральная территория<br>• `город_сел_поселен`: Городское поселение/ сельское поселение/ межселенная территория в составе муниципального района/ внутригородской район городского округа<br>• `населен_пункт`: Населенный пункт (город, деревня, село и прочее)<br>• `эл_план_структур`: Элемент планировочной структуры<br>• `эл_ул_дор_сети`: Элемент улично-дорожной сети<br>• `земел_участок`: Земельный участок (номер)<br>• `здание`: Здание (строение), сооружение/ объект незавершенного строительства<br>• `помещ_здания`: Помещение в пределах здания (строения), сооружения/ машино-место<br>• `помещ_квартиры`: Помещение в пределах квартиры"
      },
      "app__schemas__upd_full__seller_title_5_03_____________4": {
        "properties": {
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "title": "Код Стр"
          },
          "наим_стран": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Стран"
          },
          "адр_текст": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Адр Текст"
          }
        },
        "type": "object",
        "required": [
          "код_стр",
          "наим_стран",
          "адр_текст"
        ],
        "title": "АдрИнфТип",
        "description": "Информация об адресе, в том числе об адресе за пределами территории Российской Федерации<br>• `код_стр`: Код страны<br>• `наим_стран`: Наименование страны<br>• `адр_текст`: Адрес"
      },
      "app__schemas__upd_full__seller_title_5_03_____________5": {
        "properties": {
          "наим_банк": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Банк"
          },
          "бик": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "[0-9]{9}",
            "nullable": true,
            "title": "Бик"
          },
          "кор_счет": {
            "type": "string",
            "maxLength": 34,
            "minLength": 1,
            "nullable": true,
            "title": "Кор Счет"
          }
        },
        "type": "object",
        "title": "СвБанкТип"
      },
      "app__schemas__upd_full__seller_title_5_03_____________6": {
        "properties": {
          "сум_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Нал"
          },
          "без_ндс": {
            "type": "string",
            "const": "без НДС",
            "nullable": true,
            "title": "Без Ндс"
          }
        },
        "type": "object",
        "title": "СумНДСТип",
        "description": "Сумма НДС<br>• `сум_нал`: Значение<br>• `без_ндс`: Без НДС"
      },
      "app__schemas__upd_full__seller_title_5_03_____________7": {
        "properties": {
          "груз_отпр": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________2",
            "nullable": true
          },
          "он_же": {
            "type": "string",
            "const": "он же",
            "nullable": true,
            "title": "Он Же"
          }
        },
        "type": "object",
        "title": "ГрузОтТип"
      },
      "app__schemas__upd_full__seller_title_5_03_____________8": {
        "properties": {
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "title": "Код Окв"
          },
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "title": "Наим Окв"
          },
          "курс_вал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 4,
            "max_digits": 10,
            "nullable": true,
            "title": "Курс Вал"
          }
        },
        "type": "object",
        "required": [
          "код_окв",
          "наим_окв"
        ],
        "title": "ДенИзмТип"
      },
      "app__schemas__upd_full__seller_title_5_03_____________9": {
        "properties": {
          "пред_орг_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________6",
            "nullable": true
          },
          "фл_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________5",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_full__seller_title_5_03______________1": {
        "properties": {
          "тип": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Тип"
          },
          "наим": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим"
          }
        },
        "type": "object",
        "required": [
          "тип",
          "наим"
        ],
        "title": "ТипНаимТип",
        "description": "Сведения о типе и наименовании адресного элемента<br>• `тип`: Тип элемента<br>• `наим`: Наименование элемента"
      },
      "app__schemas__upd_full__seller_title_5_03______________2": {
        "properties": {
          "ин_конт": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ин Конт"
          },
          "тлф": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Тлф",
            "default": []
          },
          "эл_почта": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Эл Почта",
            "default": []
          }
        },
        "type": "object",
        "title": "КонтактТип",
        "description": "Контактные данные<br>• `ин_конт`: Иные контактные данные<br>• `тлф`: Номер контактного телефона/факс<br>• `эл_почта`: Адрес электронной почты"
      },
      "app__schemas__upd_full__seller_title_5_03______________3": {
        "properties": {
          "вид": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Вид"
          },
          "наим": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим"
          }
        },
        "type": "object",
        "required": [
          "вид",
          "наим"
        ],
        "title": "ВидНаимТип",
        "description": "Сведения о виде и наименовании адресного элемента<br>• `вид`: Вид элемента<br>• `наим`: Наименование элемента"
      },
      "app__schemas__upd_full__seller_title_5_03______________4": {
        "properties": {
          "рекв_наим_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Рекв Наим Док"
          },
          "рекв_номер_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Рекв Номер Док"
          },
          "рекв_дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Рекв Дата Док"
          },
          "рекв_ид_файл_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Файл Док"
          },
          "рекв_ид_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Док"
          },
          "р_ид_сист_хран_д": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Р Ид Сист Хран Д"
          },
          "рекв_урл_сист_док": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Урл Сист Док"
          },
          "рекв_доп_свед_док": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Доп Свед Док"
          },
          "рекв_ид_рек_сост": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________________1"
            },
            "type": "array",
            "title": "Рекв Ид Рек Сост",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "рекв_наим_док",
          "рекв_номер_док",
          "рекв_дата_док"
        ],
        "title": "РеквДокТип",
        "description": "Реквизиты документа<br>• `рекв_наим_док`: Наименование документа<br>• `рекв_номер_док`: Номер документа<br>• `рекв_дата_док`: Дата документа<br>• `рекв_ид_файл_док`: Идентификатор файла обмена документа, подписанного первой стороной<br>• `рекв_ид_док`: Идентификатор документа<br>• `р_ид_сист_хран_д`: Идентифицирующая информация об информационной системе, в которой осуществляется хранение документа, необходимая для запроса информации из информационной системы<br>• `рекв_урл_сист_док`: Сведения в формате URL об информационной системе, которая предоставляет техническую возможность получения информации о документе<br>• `рекв_доп_свед_док`: Дополнительные сведения<br>• `рекв_ид_рек_сост`: Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ"
      },
      "app__schemas__upd_full__seller_title_5_03______________5": {
        "properties": {
          "ном_испр": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Ном Испр"
          },
          "дата_испр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Испр"
          }
        },
        "type": "object",
        "required": [
          "ном_испр",
          "дата_испр"
        ],
        "title": "ИспрДокТип"
      },
      "app__schemas__upd_full__seller_title_5_03______________6": {
        "properties": {
          "код_вид_обяз": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Код Вид Обяз"
          },
          "наим_вид_обяз": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Вид Обяз"
          }
        },
        "type": "object",
        "title": "ВидОбязТип"
      },
      "app__schemas__upd_full__seller_title_5_03______________7": {
        "properties": {
          "ном_стр": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Ном Стр"
          },
          "наим_тов": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Тов"
          },
          "океи__тов": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "nullable": true,
            "title": "Океи  Тов"
          },
          "наим_ед_изм": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Ед Изм"
          },
          "кол_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "gt": 0,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Тов"
          },
          "цена_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "gt": 0,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов"
          },
          "ст_тов_без_ндс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "ge": 0,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс"
          },
          "нал_ст": {
            "type": "string",
            "enum": [
              "0%",
              "5%",
              "7%",
              "9,09%",
              "10%",
              "16,67%",
              "18%",
              "18,03%",
              "20%",
              "22%",
              "5/105",
              "7/107",
              "10/110",
              "18/118",
              "20/120",
              "22/122",
              "без НДС",
              "НДС исчисляется налоговым агентом"
            ],
            "title": "Нал Ст"
          },
          "ст_тов_уч_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "ge": 0,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал"
          },
          "св_дт": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03___________3"
            },
            "type": "array",
            "title": "Св Дт",
            "default": []
          },
          "доп_свед_тов": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________3",
            "nullable": true
          },
          "акциз": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________6",
            "nullable": true
          },
          "сум_нал": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________6"
          },
          "инф_пол_фхж2": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________4"
            },
            "type": "array",
            "title": "Инф Пол Фхж2",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "ном_стр",
          "нал_ст",
          "сум_нал"
        ],
        "title": "СведТовТип"
      },
      "app__schemas__upd_full__seller_title_5_03_______________1": {
        "properties": {
          "номер_счета": {
            "type": "string",
            "maxLength": 34,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Счета"
          },
          "св_банк": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________5",
            "nullable": true
          }
        },
        "type": "object",
        "title": "БанкРеквТип"
      },
      "app__schemas__upd_full__seller_title_5_03_______________2": {
        "properties": {
          "окпо": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Окпо"
          },
          "код_опф": {
            "type": "string",
            "maxLength": 5,
            "minLength": 2,
            "nullable": true,
            "title": "Код Опф"
          },
          "полн_наим_опф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 4,
            "nullable": true,
            "title": "Полн Наим Опф"
          },
          "структ_подр": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Структ Подр"
          },
          "инф_для_участ": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Инф Для Участ"
          },
          "сокр_наим": {
            "type": "string",
            "maxLength": 510,
            "minLength": 1,
            "nullable": true,
            "title": "Сокр Наим"
          },
          "ид_св": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03___________1"
          },
          "адрес": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________2",
            "nullable": true
          },
          "банк_рекв": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________1",
            "nullable": true
          },
          "контакт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________2",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "ид_св"
        ],
        "title": "УчастникТип",
        "description": "Сведения об участнике факта хозяйственной жизни<br>• `окпо`: Код в общероссийском классификаторе предприятий и организаций<br>• `код_опф`: Код по Общероссийскому классификатору организационно-правовых форм об организационно-правовой форме<br>• `полн_наим_опф`: Полное наименование организационно-правовой формы<br>• `структ_подр`: Структурное подразделение<br>• `инф_для_участ`: Информация для участника документооборота<br>• `сокр_наим`: Сокращенное наименование<br>• `ид_св`: Идентификационные сведения<br>• `адрес`: Адрес<br>• `банк_рекв`: Банковские реквизиты<br>• `контакт`: Контактные данные"
      },
      "app__schemas__upd_full__seller_title_5_03_______________3": {
        "properties": {
          "ид_стат": {
            "type": "string",
            "enum": [
              "ИО",
              "ИГ"
            ],
            "title": "Ид Стат"
          },
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "title": "Код Стр"
          },
          "наим_стран": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Стран"
          },
          "наим": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим"
          },
          "идентиф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "required": [
          "ид_стат",
          "код_стр",
          "наим_стран",
          "наим"
        ],
        "title": "СвИнНеУчТип",
        "description": "Сведения об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `ид_стат`: Идентификация статуса<br>• `код_стр`: Код страны<br>• `наим_стран`: Наименование страны<br>• `наим`: Наименование иностранной организации полное/Фамилия, имя, отчество (при наличии) иностранного гражданина<br>• `идентиф`: Идентификатор иностранной организации (иностранного гражданина)<br>• `иные_свед`: Иные сведения для однозначной идентификации иностранной организации (иностранного гражданина)"
      },
      "app__schemas__upd_full__seller_title_5_03_______________4": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "title": "Значен"
          }
        },
        "type": "object",
        "required": [
          "идентиф",
          "значен"
        ],
        "title": "ТекстИнфТип",
        "description": "Текстовая информация<br>• `идентиф`: Идентификатор<br>• `значен`: Значение"
      },
      "app__schemas__upd_full__seller_title_5_03_______________5": {
        "properties": {
          "номер_док": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Номер Док"
          },
          "дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Док"
          },
          "имя_файл_испр_прод": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Имя Файл Испр Прод"
          },
          "имя_файл_испр_пок": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Имя Файл Испр Пок"
          },
          "испр_док": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________5",
            "nullable": true
          },
          "св_прод": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________2"
            },
            "type": "array",
            "title": "Св Прод"
          },
          "груз_от": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________7"
            },
            "type": "array",
            "title": "Груз От",
            "default": []
          },
          "груз_получ": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________2"
            },
            "type": "array",
            "title": "Груз Получ",
            "default": []
          },
          "св_прд": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________4"
            },
            "type": "array",
            "title": "Св Прд",
            "default": []
          },
          "док_подтв_отгр_ном": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Док Подтв Отгр Ном",
            "default": []
          },
          "св_покуп": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________2"
            },
            "type": "array",
            "title": "Св Покуп"
          },
          "ден_изм": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________8"
          },
          "доп_св_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03__________1___",
            "nullable": true
          },
          "инф_пол_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03___________1___",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "номер_док",
          "дата_док",
          "св_прод",
          "св_покуп",
          "ден_изм"
        ],
        "title": "СвСчФактТип"
      },
      "app__schemas__upd_full__seller_title_5_03_______________6": {
        "properties": {
          "сум_акциз": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Акциз"
          },
          "без_акциз": {
            "type": "string",
            "const": "без акциза",
            "nullable": true,
            "title": "Без Акциз"
          }
        },
        "type": "object",
        "title": "СумАкцизТип",
        "description": "Сумма акциза:<br>• `сум_акциз`: Сумма акциза<br>• `без_акциз`: Без акциза"
      },
      "app__schemas__upd_full__seller_title_5_03_______________7": {
        "properties": {
          "ст_тов_без_ндс_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "ge": 0,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Всего"
          },
          "ст_тов_уч_нал_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "ge": 0,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал Всего"
          },
          "кол_нетто_вс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Нетто Вс"
          },
          "сум_нал_всего": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________6"
          }
        },
        "type": "object",
        "required": [
          "сум_нал_всего"
        ],
        "title": "ВсегоОплТип"
      },
      "app__schemas__upd_full__seller_title_5_03_______________8": {
        "properties": {
          "раб_орг_прод": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________5",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________9",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПерТип"
      },
      "app__schemas__upd_full__seller_title_5_03_______________9": {
        "properties": {
          "кнд": {
            "type": "string",
            "const": "1115131",
            "title": "Кнд",
            "default": "1115131"
          },
          "уид": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Уид"
          },
          "функция": {
            "$ref": "#/components/schemas/UPDFunctionEnum"
          },
          "по_факт_хж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "По Факт Хж"
          },
          "наим_док_опр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док Опр"
          },
          "дата_инф_пр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Инф Пр"
          },
          "врем_инф_пр": {
            "type": "string",
            "maxLength": 8,
            "minLength": 8,
            "pattern": "([0-1]{1}[0-9]{1}|2[0-3]{1})\\.([0-5]{1}[0-9]{1})\\.([0-5]{1}[0-9]{1})",
            "title": "Врем Инф Пр"
          },
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Экон Суб Сост"
          },
          "согл_стр_доп_инф": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "nullable": true,
            "title": "Согл Стр Доп Инф"
          },
          "св_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________5"
          },
          "табл_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________4",
            "nullable": true
          },
          "св_прод_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________________4",
            "nullable": true
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________________6"
            },
            "type": "array",
            "title": "Подписант"
          },
          "осн_довер_орг_сост": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "функция",
          "дата_инф_пр",
          "врем_инф_пр",
          "св_сч_факт",
          "подписант"
        ],
        "title": "ДокументТип"
      },
      "app__schemas__upd_full__seller_title_5_03________________": {
        "properties": {
          "ном_тов_прослеж": {
            "type": "string",
            "maxLength": 29,
            "minLength": 25,
            "title": "Ном Тов Прослеж"
          },
          "ед_изм_прослеж": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "title": "Ед Изм Прослеж"
          },
          "наим_ед_изм_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Ед Изм Прослеж"
          },
          "кол_в_ед_прослеж": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Кол В Ед Прослеж"
          },
          "ст_тов_без_ндс_прослеж": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Ст Тов Без Ндс Прослеж"
          },
          "доп_инф_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Инф Прослеж"
          }
        },
        "type": "object",
        "required": [
          "ном_тов_прослеж",
          "ед_изм_прослеж",
          "наим_ед_изм_прослеж",
          "кол_в_ед_прослеж",
          "ст_тов_без_ндс_прослеж"
        ],
        "title": "СведПрослежТип"
      },
      "app__schemas__upd_full__seller_title_5_03________________1": {
        "properties": {
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "данн_ино": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________3",
            "nullable": true
          },
          "наим_оив": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Оив"
          }
        },
        "type": "object",
        "title": "ИдРекСостТип",
        "description": "Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ<br>• `иннюл`: ИНН организации, состоящей на учете в налоговом органе<br>• `иннфл`: ИНН физического лица, в том числе индивидуального предпринимателя<br>• `данн_ино`: Данные об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `наим_оив`: Краткое наименование органа исполнительной власти (специализированной уполномоченной организации), выдавшего документ"
      },
      "app__schemas__upd_full__seller_title_5_03________________2": {
        "properties": {
          "наим_гос_сист": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Гос Сист"
          },
          "учет_ед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Учет Ед"
          },
          "иная_инф": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Иная Инф"
          },
          "ид_ном_учет_ед": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Ид Ном Учет Ед"
          }
        },
        "type": "object",
        "required": [
          "наим_гос_сист",
          "ид_ном_учет_ед"
        ],
        "title": "СвГосСистТип"
      },
      "app__schemas__upd_full__seller_title_5_03________________3": {
        "properties": {
          "дата_пер_вещ": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер Вещ"
          },
          "св_пер_вещ": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Пер Вещ"
          },
          "док_пер_вещ": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПерВещиТип"
      },
      "app__schemas__upd_full__seller_title_5_03________________4": {
        "properties": {
          "св_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________6"
          },
          "инф_пол_фхж3": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03___________3___",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "св_пер"
        ],
        "title": "СвПродПерТип"
      },
      "app__schemas__upd_full__seller_title_5_03________________5": {
        "properties": {
          "ном_довер": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "title": "Ном Довер"
          },
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "дата_вн_рег_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Вн Рег Довер"
          },
          "ид_сист_хран": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "title": "Ид Сист Хран"
          },
          "урл_сист": {
            "type": "string",
            "nullable": true,
            "title": "Урл Сист"
          }
        },
        "type": "object",
        "required": [
          "ном_довер",
          "дата_выд_довер",
          "ид_сист_хран"
        ],
        "title": "СвДоверЭлТип"
      },
      "app__schemas__upd_full__seller_title_5_03________________6": {
        "properties": {
          "должн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должн"
          },
          "тип_подпис": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Тип Подпис"
          },
          "дата_под_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Под Док"
          },
          "спос_подт_полном": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "title": "Спос Подт Полном"
          },
          "доп_свед_подп": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Свед Подп"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________"
          },
          "св_довер_эл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________________5"
            },
            "type": "array",
            "title": "Св Довер Эл",
            "default": []
          },
          "св_довер_бум": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________7"
            },
            "type": "array",
            "title": "Св Довер Бум",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "спос_подт_полном",
          "фио"
        ],
        "title": "ПодписантТип"
      },
      "app__schemas__upd_full__seller_title_5_03_________________1": {
        "properties": {
          "вид_код": {
            "type": "string",
            "maxLength": 1,
            "minLength": 1,
            "title": "Вид Код"
          },
          "наим": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим"
          }
        },
        "type": "object",
        "required": [
          "вид_код",
          "наим"
        ],
        "title": "ВидНаимКодТип",
        "description": "Сведения о виде (коде) и наименовании адресного элемента<br>• `вид_код`: Вид (код) элемента<br>• `наим`: Наименование элемента"
      },
      "app__schemas__upd_full__seller_title_5_03_________________2": {
        "properties": {
          "ам_группа": {
            "type": "string",
            "maxLength": 2,
            "minLength": 1,
            "title": "Ам Группа"
          },
          "код_окоф": {
            "type": "string",
            "maxLength": 16,
            "minLength": 1,
            "title": "Код Окоф"
          },
          "ср_пол_исп_ос": {
            "type": "string",
            "maxLength": 3,
            "minLength": 1,
            "title": "Ср Пол Исп Ос"
          },
          "факт_срок_исп": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Факт Срок Исп"
          }
        },
        "type": "object",
        "required": [
          "ам_группа",
          "код_окоф",
          "ср_пол_исп_ос",
          "факт_срок_исп"
        ],
        "title": "НалУчАмортТип"
      },
      "app__schemas__upd_full__seller_title_5_03_________________3": {
        "properties": {
          "пр_тов_раб": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "nullable": true,
            "title": "Пр Тов Раб"
          },
          "доп_призн": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Призн"
          },
          "надл_отп": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Надл Отп"
          },
          "характер_тов": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Характер Тов"
          },
          "сорт_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Сорт Тов"
          },
          "серия_тов": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Серия Тов"
          },
          "артикул_тов": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Артикул Тов"
          },
          "код_тов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Код Тов"
          },
          "гтин": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "nullable": true,
            "title": "Гтин"
          },
          "код_кат": {
            "type": "string",
            "maxLength": 27,
            "minLength": 27,
            "nullable": true,
            "title": "Код Кат"
          },
          "код_вид_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "nullable": true,
            "title": "Код Вид Тов"
          },
          "код_вид_пр": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 3,
            "nullable": true,
            "title": "Код Вид Пр"
          },
          "код_тов_окпд2": {
            "type": "string",
            "maxLength": 12,
            "minLength": 2,
            "nullable": true,
            "title": "Код Тов Окпд2"
          },
          "доп_инф_п_вид_о": {
            "type": "string",
            "maxLength": 5,
            "minLength": 5,
            "nullable": true,
            "title": "Доп Инф П Вид О"
          },
          "кр_наим_стр_пр": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Кр Наим Стр Пр",
            "default": []
          },
          "сопр_док_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Сопр Док Тов",
            "default": []
          },
          "нал_уч_аморт": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_________________2",
            "nullable": true
          },
          "сум_нал_восст": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_____________6",
            "nullable": true
          },
          "свед_прослеж": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________________"
            },
            "type": "array",
            "title": "Свед Прослеж",
            "default": []
          },
          "ном_сред_идент_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03____________________"
            },
            "type": "array",
            "title": "Ном Сред Идент Тов",
            "default": []
          },
          "св_гос_сист": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________________2"
            },
            "type": "array",
            "title": "Св Гос Сист",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСведТовТип"
      },
      "app__schemas__upd_full__seller_title_5_03_________________4": {
        "properties": {
          "свед_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________7"
            },
            "type": "array",
            "title": "Свед Тов"
          },
          "всего_опл": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03_______________7"
          }
        },
        "type": "object",
        "required": [
          "свед_тов",
          "всего_опл"
        ],
        "title": "ТаблСчФактТип"
      },
      "app__schemas__upd_full__seller_title_5_03_________________5": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "фио"
        ],
        "title": "РабОргПродТип"
      },
      "app__schemas__upd_full__seller_title_5_03_________________6": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_пер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Орг Пер"
          },
          "иннюл_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл Пер"
          },
          "осн_довер_орг_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4",
            "nullable": true
          },
          "осн_полн_пред_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03______________4",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________"
          }
        },
        "type": "object",
        "required": [
          "должность",
          "наим_орг_пер",
          "фио"
        ],
        "title": "ПредОргПерТип"
      },
      "app__schemas__upd_full__seller_title_5_03_________________7": {
        "properties": {
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Вн Ном Довер"
          },
          "св_ид_довер": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Ид Довер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_full__seller_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "дата_выд_довер",
          "вн_ном_довер"
        ],
        "title": "СвДоверБумТип"
      },
      "app__schemas__upd_full__seller_title_5_03____________________": {
        "properties": {
          "идент_транс_упак": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идент Транс Упак"
          },
          "кол_вед_марк": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Вед Марк"
          },
          "пр_парт_марк": {
            "type": "string",
            "maxLength": 55,
            "minLength": 1,
            "nullable": true,
            "title": "Пр Парт Марк"
          },
          "киз": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Киз",
            "default": []
          },
          "ном_упак": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Ном Упак",
            "default": []
          }
        },
        "type": "object",
        "title": "НомСредИдентТовТип"
      },
      "app__schemas__upd_full__seller_title_5_03______________________": {
        "properties": {
          "дата_гос_конт": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "title": "Дата Гос Конт"
          },
          "номер_гос_конт": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "title": "Номер Гос Конт"
          },
          "лиц_счет_прод": {
            "type": "string",
            "maxLength": 11,
            "minLength": 11,
            "nullable": true,
            "title": "Лиц Счет Прод"
          },
          "код_прод_бюдж_класс": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Прод Бюдж Класс"
          },
          "код_цели_прод": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Цели Прод"
          },
          "код_казнач_прод": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Код Казнач Прод"
          },
          "наим_казнач_прод": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Казнач Прод"
          }
        },
        "type": "object",
        "required": [
          "дата_гос_конт",
          "номер_гос_конт"
        ],
        "title": "ИнфПродЗаГоскКазнТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01_______": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "должн": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Должн"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ЮЛТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_nullable__buyer_title_5_01________4___": {
        "properties": {
          "св_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01_____________3"
          },
          "инф_пол_фхж4": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01___________4___",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СодФХЖ4Тип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01___________1": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________"
          }
        },
        "type": "object",
        "title": "СвФЛТип",
        "description": "Сведения о физическом лице<br>• `иннфл`: ИНН<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_nullable__buyer_title_5_01___________2": {
        "properties": {
          "св_гос_рег_ип": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Св Гос Рег Ип"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________"
          }
        },
        "type": "object",
        "title": "СвИПТип",
        "description": "Сведения о индивидуальном предпринимателе<br>• `иннфл`: ИНН<br>• `св_гос_рег_ип`: Реквизиты свидетельства о государственной регистрации индивидуального предпринимателя<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_nullable__buyer_title_5_01___________4___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01_____________"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ4Тип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01_____________": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Значен"
          }
        },
        "type": "object",
        "title": "ТекстИнфТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01_____________1": {
        "properties": {
          "осн_довер_фл": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Фл"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ФЛПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01_____________2": {
        "properties": {
          "пред_орг_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________________",
            "nullable": true
          },
          "фл_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01_____________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01_____________3": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Сод Опер"
          },
          "дата_прин": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Прин"
          },
          "код_сод_опер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01_______________",
            "nullable": true
          },
          "св_лиц_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01_____________4": {
        "properties": {
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Экон Суб Сост"
          },
          "сод_фхж4": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________4___"
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________________3"
            },
            "type": "array",
            "title": "Подписант",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПокТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01_______________": {
        "properties": {
          "код_итога": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Код Итога"
          },
          "наим_док_расх": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док Расх"
          },
          "вид_док_расх": {
            "type": "string",
            "enum": [
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Вид Док Расх"
          },
          "ном_док_расх": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Док Расх"
          },
          "дата_док_расх": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Док Расх"
          }
        },
        "type": "object",
        "title": "КодСодОперТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01________________": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_прин": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг Прин"
          },
          "осн_довер_орг_прин": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Орг Прин"
          },
          "осн_полн_пред_прин": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Пред Прин"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ПредОргПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01________________1": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "РабОргПокТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01________________2": {
        "properties": {
          "раб_орг_пок": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01________________1",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01_____________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_01________________3": {
        "properties": {
          "обл_полн": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Обл Полн"
          },
          "статус": {
            "type": "string",
            "enum": [
              "3",
              "4",
              "5",
              "6"
            ],
            "nullable": true,
            "title": "Статус"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн"
          },
          "осн_полн_орг": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Орг"
          },
          "фл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01___________1",
            "nullable": true
          },
          "ип": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01___________2",
            "nullable": true
          },
          "юл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_01_______",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ПодписантТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________4___": {
        "properties": {
          "св_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03_____________3"
          }
        },
        "type": "object",
        "title": "СодФХЖ4Тип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03____________": {
        "properties": {
          "рекв_наим_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Наим Док"
          },
          "рекв_номер_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Номер Док"
          },
          "рекв_дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Рекв Дата Док"
          },
          "рекв_ид_файл_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Файл Док"
          },
          "рекв_ид_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Док"
          },
          "р_ид_сист_хран_д": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Р Ид Сист Хран Д"
          },
          "рекв_урл_сист_док": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Урл Сист Док"
          },
          "рекв_доп_свед_док": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Доп Свед Док"
          },
          "рекв_ид_рек_сост": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________________1"
            },
            "type": "array",
            "title": "Рекв Ид Рек Сост",
            "default": []
          }
        },
        "type": "object",
        "title": "РеквДокТип",
        "description": "Реквизиты документа<br>• `рекв_наим_док`: Наименование документа<br>• `рекв_номер_док`: Номер документа<br>• `рекв_дата_док`: Дата документа<br>• `рекв_ид_файл_док`: Идентификатор файла обмена документа, подписанного первой стороной<br>• `рекв_ид_док`: Идентификатор документа<br>• `р_ид_сист_хран_д`: Идентифицирующая информация об информационной системе, в которой осуществляется хранение документа, необходимая для запроса информации из информационной системы<br>• `рекв_урл_сист_док`: Сведения в формате URL об информационной системе, которая предоставляет техническую возможность получения информации о документе<br>• `рекв_доп_свед_док`: Дополнительные сведения<br>• `рекв_ид_рек_сост`: Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ"
      },
      "app__schemas__upd_nullable__buyer_title_5_03_____________1": {
        "properties": {
          "иннфл_прин": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл Прин"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_довер_фл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03____________",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ФЛПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03_____________2": {
        "properties": {
          "пред_орг_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________________",
            "nullable": true
          },
          "фл_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03_____________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03_____________3": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Сод Опер"
          },
          "дата_прин": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Прин"
          },
          "код_сод_опер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03_________________1"
          },
          "св_лиц_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________________3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03_______________1": {
        "properties": {
          "ид_стат": {
            "type": "string",
            "enum": [
              "ИО",
              "ИГ"
            ],
            "nullable": true,
            "title": "Ид Стат"
          },
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Стр"
          },
          "наим_стран": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Стран"
          },
          "наим": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим"
          },
          "идентиф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "title": "СвИнНеУчТип",
        "description": "Сведения об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `ид_стат`: Идентификация статуса<br>• `код_стр`: Код страны<br>• `наим_стран`: Наименование страны<br>• `наим`: Наименование иностранной организации полное/Фамилия, имя, отчество (при наличии) иностранного гражданина<br>• `идентиф`: Идентификатор иностранной организации (иностранного гражданина)<br>• `иные_свед`: Иные сведения для однозначной идентификации иностранной организации (иностранного гражданина)"
      },
      "app__schemas__upd_nullable__buyer_title_5_03_______________2": {
        "properties": {
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Экон Суб Сост"
          },
          "сод_фхж4": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________4___"
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________________5"
            },
            "type": "array",
            "title": "Подписант",
            "default": []
          }
        },
        "type": "object",
        "title": "ДокументТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________________": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_прин": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг Прин"
          },
          "инн_орг_прин": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Инн Орг Прин"
          },
          "осн_довер_орг_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03____________",
            "nullable": true
          },
          "осн_полн_пред_прин": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03____________",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ПредОргПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________________1": {
        "properties": {
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "данн_ино": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03_______________1",
            "nullable": true
          },
          "наим_оив": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Оив"
          }
        },
        "type": "object",
        "title": "ИдРекСостТип",
        "description": "Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ<br>• `иннюл`: ИНН организации, состоящей на учете в налоговом органе<br>• `иннфл`: ИНН физического лица, в том числе индивидуального предпринимателя<br>• `данн_ино`: Данные об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `наим_оив`: Краткое наименование органа исполнительной власти (специализированной уполномоченной организации), выдавшего документ"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________________2": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "РабОргПокТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________________3": {
        "properties": {
          "раб_орг_пок": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________________2",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03_____________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПринТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________________4": {
        "properties": {
          "ном_довер": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ном Довер"
          },
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "дата_вн_рег_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Вн Рег Довер"
          }
        },
        "type": "object",
        "title": "СвДоверЭлТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03________________5": {
        "properties": {
          "должн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должн"
          },
          "спос_подт_полном": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "nullable": true,
            "title": "Спос Подт Полном"
          },
          "доп_свед_подп": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Свед Подп"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________",
            "nullable": true
          },
          "св_довер_эл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________________4"
            },
            "type": "array",
            "title": "Св Довер Эл",
            "default": []
          },
          "св_довер_бум": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03_________________2"
            },
            "type": "array",
            "title": "Св Довер Бум",
            "default": []
          }
        },
        "type": "object",
        "title": "ПодписантТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03_________________1": {
        "properties": {
          "код_итога": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Код Итога"
          },
          "рекв_док_расх": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03____________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "КодСодОперТип"
      },
      "app__schemas__upd_nullable__buyer_title_5_03_________________2": {
        "properties": {
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "св_ид_довер": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Ид Довер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__buyer_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвДоверБумТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______": {
        "properties": {
          "гос_рег_ип_выд_дов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Гос Рег Ип Выд Дов"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "должн": {
            "type": "string",
            "maxLength": 128,
            "minLength": 0,
            "nullable": true,
            "title": "Должн"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ЮЛТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_nullable__seller_title_5_01__________1___": {
        "properties": {
          "ид_гос_кон": {
            "type": "string",
            "maxLength": 25,
            "minLength": 0,
            "nullable": true,
            "title": "Ид Гос Кон"
          },
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          },
          "курс_вал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 4,
            "max_digits": 10,
            "nullable": true,
            "title": "Курс Вал"
          },
          "обст_форм_счф": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6",
              "7",
              "8"
            ],
            "nullable": true,
            "title": "Обст Форм Счф"
          },
          "инф_прод_гос_зак_казн": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01______________________",
            "nullable": true
          },
          "св_фактор": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________2",
            "nullable": true
          },
          "осн_уст_ден_треб": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ДопСвФХЖ1Тип"
      },
      "app__schemas__upd_nullable__seller_title_5_01___________1": {
        "properties": {
          "св_ип": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________2",
            "nullable": true
          },
          "св_юл_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_____________1",
            "nullable": true
          },
          "св_ин_не_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________3",
            "nullable": true
          },
          "св_фл_участ_фхж": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИдСвТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01___________1___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ1Тип"
      },
      "app__schemas__upd_nullable__seller_title_5_01___________2": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "деф_иннфл": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Иннфл"
          },
          "св_гос_рег_ип": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Св Гос Рег Ип"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________"
          }
        },
        "type": "object",
        "title": "СвИПТип",
        "description": "Сведения об индивидуальном предпринимателе<br>• `иннфл`: ИНН<br>• `деф_иннфл`: ИНН при составлении документа с Функция=СЧФ или Функция=СЧФДОП налоговым агентом, указанным в пунктах 2 и 3 статьи 161 НК РФ, в части информации о продавце/грузоотправителе<br>• `св_гос_рег_ип`: Реквизиты свидетельства о государственной регистрации индивидуального предпринимателя<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_nullable__seller_title_5_01___________3": {
        "properties": {
          "гос_рег_ип_выд_дов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Гос Рег Ип Выд Дов"
          },
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________"
          }
        },
        "type": "object",
        "title": "СвФЛТип",
        "description": "Сведения о физическом лице<br>• `гос_рег_ип_выд_дов`: Реквизиты свидетельства о государственной регистрации индивидуального предпринимателя, выдавшего доверенность физическому лицу на подписание счета-фактуры<br>• `иннфл`: ИНН физического лица<br>• `иные_свед`: Иные сведения, идентифицирующие физическое лицо<br>• `фио`: Фамилия, имя, отчество"
      },
      "app__schemas__upd_nullable__seller_title_5_01___________3___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ3Тип"
      },
      "app__schemas__upd_nullable__seller_title_5_01___________4": {
        "properties": {
          "код_происх": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Происх"
          },
          "деф_код_происх": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Код Происх"
          },
          "номер_тд": {
            "type": "string",
            "maxLength": 29,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Тд"
          }
        },
        "type": "object",
        "title": "СвТДТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01____________1": {
        "properties": {
          "адр_рф": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01____________2",
            "nullable": true
          },
          "адр_инф": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_____________2",
            "nullable": true
          },
          "код_гар": {
            "type": "string",
            "maxLength": 36,
            "minLength": 1,
            "nullable": true,
            "title": "Код Гар"
          }
        },
        "type": "object",
        "title": "АдресТип",
        "description": "Сведения об адресе<br>• `адр_рф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительства индивидуального предпринимателя (реквизиты адреса на территории Российской Федерации)<br>• `адр_инф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительства индивидуального предпринимателя (информация об адресе, в том числе об адресе за пределами территории Российской Федерации)<br>• `код_гар`: Уникальный номер адреса объекта адресации в государственном адресном реестре"
      },
      "app__schemas__upd_nullable__seller_title_5_01____________2": {
        "properties": {
          "индекс": {
            "type": "string",
            "maxLength": 6,
            "minLength": 6,
            "pattern": "[0-9]{6}",
            "nullable": true,
            "title": "Индекс"
          },
          "код_регион": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2,
            "pattern": "[0-9]{2}",
            "nullable": true,
            "title": "Код Регион"
          },
          "район": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Район"
          },
          "город": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Город"
          },
          "насел_пункт": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Насел Пункт"
          },
          "улица": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Улица"
          },
          "дом": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Дом"
          },
          "корпус": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Корпус"
          },
          "кварт": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Кварт"
          }
        },
        "type": "object",
        "title": "АдрРФТип",
        "description": "Адрес в Российской Федерации<br>• `индекс`: Индекс<br>• `код_регион`: Код региона<br>• `район`: Район<br>• `город`: Город<br>• `насел_пункт`: Населенный пункт<br>• `улица`: Улица<br>• `дом`: Дом<br>• `корпус`: Корпус<br>• `кварт`: Квартира"
      },
      "app__schemas__upd_nullable__seller_title_5_01____________3": {
        "properties": {
          "номер_прд": {
            "type": "string",
            "maxLength": 30,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Прд"
          },
          "дата_прд": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Прд"
          },
          "сумма_прд": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сумма Прд"
          }
        },
        "type": "object",
        "title": "СвПРДТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01____________4": {
        "properties": {
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_довер_фл": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Фл"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ФЛПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01____________5": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Сод Опер"
          },
          "вид_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Опер"
          },
          "дата_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер"
          },
          "дата_нач": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Нач"
          },
          "дата_окон": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Окон"
          },
          "осн_пер": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________________1"
            },
            "type": "array",
            "title": "Осн Пер",
            "default": []
          },
          "св_лиц_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________8",
            "nullable": true
          },
          "тран_груз": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________10",
            "nullable": true
          },
          "св_пер_вещи": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________________3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_____________1": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "деф_иннюл": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Иннюл"
          },
          "кпп": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})([0-9]{2})([0-9A-Z]{2})([0-9]{3})",
            "nullable": true,
            "title": "Кпп"
          }
        },
        "type": "object",
        "title": "СвЮЛУчТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_____________2": {
        "properties": {
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Стр"
          },
          "адр_текст": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Адр Текст"
          }
        },
        "type": "object",
        "title": "АдрИнфТип",
        "description": "Информация об адресе, в том числе об адресе за пределами территории Российской Федерации<br>• `код_стр`: Код страны<br>• `адр_текст`: Адрес"
      },
      "app__schemas__upd_nullable__seller_title_5_01_____________3": {
        "properties": {
          "наим_банк": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Банк"
          },
          "бик": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "[0-9]{9}",
            "nullable": true,
            "title": "Бик"
          },
          "кор_счет": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Кор Счет"
          }
        },
        "type": "object",
        "title": "СвБанкТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_____________4": {
        "properties": {
          "сум_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Нал"
          },
          "без_ндс": {
            "type": "string",
            "const": "без НДС",
            "nullable": true,
            "title": "Без Ндс"
          },
          "деф_ндс": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ндс"
          }
        },
        "type": "object",
        "title": "СумНДСТип",
        "description": "Сумма НДС<br>• `сум_нал`: Значение<br>• `без_ндс`: Без НДС<br>• `деф_ндс`: Знак прочерка"
      },
      "app__schemas__upd_nullable__seller_title_5_01_____________5": {
        "properties": {
          "груз_отпр": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________2",
            "nullable": true
          },
          "он_же": {
            "type": "string",
            "const": "он же",
            "nullable": true,
            "title": "Он Же"
          }
        },
        "type": "object",
        "title": "ГрузОтТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_____________6": {
        "properties": {
          "пред_орг_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_________________4",
            "nullable": true
          },
          "фл_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01____________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01______________1": {
        "properties": {
          "тлф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Тлф"
          },
          "эл_почта": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Эл Почта"
          }
        },
        "type": "object",
        "title": "КонтактТип",
        "description": "Контактные данные<br>• `тлф`: Номер контактного телефона/факс<br>• `эл_почта`: Адрес электронной почты"
      },
      "app__schemas__upd_nullable__seller_title_5_01______________2": {
        "properties": {
          "ном_испр_сч_ф": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 3,
            "nullable": true,
            "title": "Ном Испр Сч Ф"
          },
          "деф_ном_испр_сч_ф": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ном Испр Сч Ф"
          },
          "дата_испр_сч_ф": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Испр Сч Ф"
          },
          "деф_дата_испр_сч_ф": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Дата Испр Сч Ф"
          }
        },
        "type": "object",
        "title": "ИспрСчФТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01______________3": {
        "properties": {
          "ном_стр": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 6,
            "nullable": true,
            "title": "Ном Стр"
          },
          "наим_тов": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Тов"
          },
          "океи__тов": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "nullable": true,
            "title": "Океи  Тов"
          },
          "деф_океи__тов": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Океи  Тов"
          },
          "кол_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Тов"
          },
          "цена_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов"
          },
          "ст_тов_без_ндс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс"
          },
          "нал_ст": {
            "type": "string",
            "enum": [
              "0%",
              "5%",
              "7%",
              "9,09%",
              "10%",
              "16,67%",
              "18,03%",
              "20%",
              "22%",
              "5/105",
              "7/107",
              "10/110",
              "20/120",
              "22/122",
              "без НДС",
              "НДС исчисляется налоговым агентом"
            ],
            "nullable": true,
            "title": "Нал Ст"
          },
          "ст_тов_уч_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал"
          },
          "деф_ст_тов_уч_нал": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ст Тов Уч Нал"
          },
          "акциз": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________6",
            "nullable": true
          },
          "сум_нал": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_____________4",
            "nullable": true
          },
          "св_тд": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________4"
            },
            "type": "array",
            "title": "Св Тд",
            "default": []
          },
          "доп_свед_тов": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_________________1",
            "nullable": true
          },
          "инф_пол_фхж2": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________4"
            },
            "type": "array",
            "title": "Инф Пол Фхж2",
            "default": []
          }
        },
        "type": "object",
        "title": "СведТовТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________1": {
        "properties": {
          "номер_счета": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Счета"
          },
          "св_банк": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_____________3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "БанкРеквТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________10": {
        "properties": {
          "св_тран_груз": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Тран Груз"
          },
          "тран_накл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________9"
            },
            "type": "array",
            "title": "Тран Накл",
            "default": []
          },
          "перевозчик": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ТранГрузТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________11": {
        "properties": {
          "функция": {
            "$ref": "#/components/schemas/UPDFunctionEnum"
          },
          "по_факт_хж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "По Факт Хж"
          },
          "наим_док_опр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док Опр"
          },
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Экон Суб Сост"
          },
          "осн_довер_орг_сост": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Орг Сост"
          },
          "согл_стр_доп_инф": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "nullable": true,
            "title": "Согл Стр Доп Инф"
          },
          "св_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________5"
          },
          "табл_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_________________2",
            "nullable": true
          },
          "св_прод_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________________4",
            "nullable": true
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________________5"
            },
            "type": "array",
            "title": "Подписант",
            "default": []
          }
        },
        "type": "object",
        "title": "ДокументТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________2": {
        "properties": {
          "окпо": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Окпо"
          },
          "структ_подр": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Структ Подр"
          },
          "инф_для_участ": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Инф Для Участ"
          },
          "кратк_назв": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Кратк Назв"
          },
          "ид_св": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________1"
          },
          "адрес": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01____________1",
            "nullable": true
          },
          "контакт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01______________1",
            "nullable": true
          },
          "банк_рекв": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "УчастникТип",
        "description": "Сведения об участнике факта хозяйственной жизни<br>• `окпо`: Код в общероссийском классификаторе предприятий и организаций<br>• `структ_подр`: Структурное подразделение<br>• `инф_для_участ`: Информация для участника документооборота<br>• `кратк_назв`: Краткое название<br>• `ид_св`: Идентификационные сведения<br>• `адрес`: Адрес<br>• `контакт`: Контактные данные<br>• `банк_рекв`: Банковские реквизиты"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________3": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "идентиф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "title": "СвИнНеУчТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________4": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Значен"
          }
        },
        "type": "object",
        "title": "ТекстИнфТип",
        "description": "Текстовая информация<br>• `идентиф`: Идентификатор<br>• `значен`: Значение"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________5": {
        "properties": {
          "номер_сч_ф": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Сч Ф"
          },
          "дата_сч_ф": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Сч Ф"
          },
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Окв"
          },
          "испр_сч_ф": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01______________2",
            "nullable": true
          },
          "св_прод": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________2"
            },
            "type": "array",
            "title": "Св Прод",
            "default": []
          },
          "груз_от": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_____________5"
            },
            "type": "array",
            "title": "Груз От",
            "default": []
          },
          "груз_получ": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________2"
            },
            "type": "array",
            "title": "Груз Получ",
            "default": []
          },
          "св_прд": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01____________3"
            },
            "type": "array",
            "title": "Св Прд",
            "default": []
          },
          "св_покуп": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________2"
            },
            "type": "array",
            "title": "Св Покуп",
            "default": []
          },
          "доп_св_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01__________1___",
            "nullable": true
          },
          "док_подтв_отгр": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_________________"
            },
            "type": "array",
            "title": "Док Подтв Отгр",
            "default": []
          },
          "инф_пол_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________1___",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвСчФактТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________6": {
        "properties": {
          "сум_акциз": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Акциз"
          },
          "без_акциз": {
            "type": "string",
            "const": "без акциза",
            "nullable": true,
            "title": "Без Акциз"
          }
        },
        "type": "object",
        "title": "СумАкцизТип",
        "description": "Сумма акциза:<br>• `сум_акциз`: Сумма акциза<br>• `без_акциз`: Без акциза"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________7": {
        "properties": {
          "ст_тов_без_ндс_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Всего"
          },
          "ст_тов_уч_нал_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал Всего"
          },
          "деф_ст_тов_уч_нал_всего": {
            "type": "string",
            "const": "-",
            "nullable": true,
            "title": "Деф Ст Тов Уч Нал Всего"
          },
          "сум_нал_всего": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_____________4",
            "nullable": true
          },
          "кол_нетто_вс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Нетто Вс"
          }
        },
        "type": "object",
        "title": "ВсегоОплТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________8": {
        "properties": {
          "раб_орг_прод": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_________________3",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_____________6",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_______________9": {
        "properties": {
          "ном_тран_накл": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Тран Накл"
          },
          "дата_тран_накл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Тран Накл"
          }
        },
        "type": "object",
        "title": "ТранНаклТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01________________1": {
        "properties": {
          "наим_осн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Осн"
          },
          "ном_осн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Осн"
          },
          "дата_осн": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Осн"
          },
          "доп_св_осн": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Св Осн"
          },
          "идент_осн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идент Осн"
          }
        },
        "type": "object",
        "title": "ОснованиеТип",
        "description": "Основание отгрузки (передачи, уступки)<br>• `наим_осн`: Наименование документа - основания<br>• `ном_осн`: Номер документа - основания<br>• `дата_осн`: Дата документа - основания<br>• `доп_св_осн`: Дополнительные сведения<br>• `идент_осн`: Идентификатор документа - основания"
      },
      "app__schemas__upd_nullable__seller_title_5_01________________2": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "ид_эдо": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "nullable": true,
            "title": "Ид Эдо"
          }
        },
        "type": "object",
        "title": "СвОЭДОтпрТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01________________3": {
        "properties": {
          "дата_пер_вещ": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер Вещ"
          },
          "св_пер_вещ": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Пер Вещ"
          }
        },
        "type": "object",
        "title": "СвПерВещиТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01________________4": {
        "properties": {
          "св_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01____________5"
          },
          "инф_пол_фхж3": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________3___",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПродПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01________________5": {
        "properties": {
          "обл_полн": {
            "type": "string",
            "enum": [
              "0",
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "nullable": true,
            "title": "Обл Полн"
          },
          "статус": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4"
            ],
            "nullable": true,
            "title": "Статус"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн"
          },
          "осн_полн_орг": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Орг"
          },
          "фл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________3",
            "nullable": true
          },
          "ип": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01___________2",
            "nullable": true
          },
          "юл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ПодписантТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_________________": {
        "properties": {
          "наим_док_отгр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док Отгр"
          },
          "ном_док_отгр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Док Отгр"
          },
          "дата_док_отгр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Док Отгр"
          }
        },
        "type": "object",
        "title": "ДокПодтвОтгрТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_________________1": {
        "properties": {
          "пр_тов_раб": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "nullable": true,
            "title": "Пр Тов Раб"
          },
          "доп_призн": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Призн"
          },
          "наим_ед_изм": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Ед Изм"
          },
          "кр_наим_стр_пр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Кр Наим Стр Пр"
          },
          "надл_отп": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Надл Отп"
          },
          "характер_тов": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Характер Тов"
          },
          "сорт_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Сорт Тов"
          },
          "артикул_тов": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Артикул Тов"
          },
          "код_тов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Код Тов"
          },
          "код_кат": {
            "type": "string",
            "maxLength": 27,
            "minLength": 27,
            "nullable": true,
            "title": "Код Кат"
          },
          "код_вид_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "nullable": true,
            "title": "Код Вид Тов"
          },
          "свед_прослеж": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01__________________2"
            },
            "type": "array",
            "title": "Свед Прослеж",
            "default": []
          },
          "ном_сред_идент_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01____________________"
            },
            "type": "array",
            "title": "Ном Сред Идент Тов",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСведТовТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_________________2": {
        "properties": {
          "свед_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01______________3"
            },
            "type": "array",
            "title": "Свед Тов",
            "default": []
          },
          "всего_опл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01_______________7"
          }
        },
        "type": "object",
        "title": "ТаблСчФактТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_________________3": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_полн": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "РабОргПродТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01_________________4": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_пер": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг Пер"
          },
          "осн_довер_орг_пер": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Довер Орг Пер"
          },
          "осн_полн_пред_пер": {
            "type": "string",
            "maxLength": 120,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Полн Пред Пер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ПредОргПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01__________________1": {
        "properties": {
          "ид_отпр": {
            "type": "string",
            "maxLength": 46,
            "minLength": 4,
            "nullable": true,
            "title": "Ид Отпр"
          },
          "ид_пол": {
            "type": "string",
            "maxLength": 46,
            "minLength": 4,
            "nullable": true,
            "title": "Ид Пол"
          },
          "св_оэд_отпр": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_01________________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвУчДокОборТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01__________________2": {
        "properties": {
          "ном_тов_прослеж": {
            "type": "string",
            "maxLength": 29,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Тов Прослеж"
          },
          "ед_изм_прослеж": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "nullable": true,
            "title": "Ед Изм Прослеж"
          },
          "наим_ед_изм_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Ед Изм Прослеж"
          },
          "кол_в_ед_прослеж": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол В Ед Прослеж"
          },
          "доп_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Прослеж"
          }
        },
        "type": "object",
        "title": "СведПрослежТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01____________________": {
        "properties": {
          "идент_транс_упак": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идент Транс Упак"
          },
          "киз": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Киз",
            "default": []
          },
          "ном_упак": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Ном Упак",
            "default": []
          }
        },
        "type": "object",
        "title": "НомСредИдентТовТип"
      },
      "app__schemas__upd_nullable__seller_title_5_01______________________": {
        "properties": {
          "дата_гос_конт": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Гос Конт"
          },
          "номер_гос_конт": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Гос Конт"
          },
          "лиц_счет_прод": {
            "type": "string",
            "maxLength": 11,
            "minLength": 11,
            "nullable": true,
            "title": "Лиц Счет Прод"
          },
          "код_прод_бюдж_класс": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Прод Бюдж Класс"
          },
          "код_цели_прод": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Цели Прод"
          },
          "код_казнач_прод": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Код Казнач Прод"
          },
          "наим_казнач_прод": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Казнач Прод"
          }
        },
        "type": "object",
        "title": "ИнфПродГосЗакКазнТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03________": {
        "properties": {
          "фамилия": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Фамилия"
          },
          "имя": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Имя"
          },
          "отчество": {
            "type": "string",
            "maxLength": 60,
            "minLength": 1,
            "nullable": true,
            "title": "Отчество"
          }
        },
        "type": "object",
        "title": "ФИОТип",
        "description": "Фамилия, имя, отчество физического лица<br>• `фамилия`: Фамилия<br>• `имя`: Имя<br>• `отчество`: Отчество"
      },
      "app__schemas__upd_nullable__seller_title_5_03__________1___": {
        "properties": {
          "ид_гос_кон": {
            "type": "string",
            "maxLength": 25,
            "minLength": 0,
            "nullable": true,
            "title": "Ид Гос Кон"
          },
          "сп_обст_фсчф": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "nullable": true,
            "title": "Сп Обст Фсчф"
          },
          "сп_обст_фсчфдоп": {
            "type": "string",
            "maxLength": 5,
            "minLength": 5,
            "nullable": true,
            "title": "Сп Обст Фсчфдоп"
          },
          "сп_обст_фдоп": {
            "type": "string",
            "maxLength": 5,
            "minLength": 5,
            "nullable": true,
            "title": "Сп Обст Фдоп"
          },
          "вид_обяз": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________6"
            },
            "type": "array",
            "title": "Вид Обяз",
            "default": []
          },
          "инф_прод_за_госк_казн": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________________",
            "nullable": true
          },
          "св_фактор": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________2",
            "nullable": true
          },
          "осн_уст_ден_треб": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4",
            "nullable": true
          },
          "сопр_док_фхж": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Сопр Док Фхж",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСвФХЖ1Тип"
      },
      "app__schemas__upd_nullable__seller_title_5_03___________1": {
        "properties": {
          "св_ип": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03___________2",
            "nullable": true
          },
          "св_юл_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________1",
            "nullable": true
          },
          "св_ин_не_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________3",
            "nullable": true
          },
          "св_фл_уч": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИдСвТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03___________1___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ1Тип"
      },
      "app__schemas__upd_nullable__seller_title_5_03___________2": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "св_гос_рег_ип": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Св Гос Рег Ип"
          },
          "огрнип": {
            "type": "string",
            "maxLength": 15,
            "minLength": 15,
            "pattern": "[0-9]{15}",
            "nullable": true,
            "title": "Огрнип"
          },
          "дата_огрнип": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Огрнип"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________"
          }
        },
        "type": "object",
        "title": "СвИПТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03___________3": {
        "properties": {
          "код_происх": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Происх"
          },
          "номер_дт": {
            "type": "string",
            "maxLength": 29,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Дт"
          }
        },
        "type": "object",
        "title": "СвДТТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03___________3___": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________4"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолФХЖ3Тип"
      },
      "app__schemas__upd_nullable__seller_title_5_03___________4": {
        "properties": {
          "св_тран": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Тран"
          },
          "инкотермс": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "nullable": true,
            "title": "Инкотермс"
          },
          "вер_инкотермс": {
            "type": "string",
            "maxLength": 4,
            "minLength": 4,
            "nullable": true,
            "title": "Вер Инкотермс"
          }
        },
        "type": "object",
        "title": "ТранТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03____________1": {
        "properties": {
          "тип": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Тип"
          },
          "номер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Номер"
          }
        },
        "type": "object",
        "title": "НомерТип",
        "description": "Сведения о номере адресного элемента<br>• `тип`: Тип элемента<br>• `номер`: Номер элемента"
      },
      "app__schemas__upd_nullable__seller_title_5_03____________2": {
        "properties": {
          "глн_места": {
            "type": "string",
            "maxLength": 13,
            "minLength": 13,
            "nullable": true,
            "title": "Глн Места"
          },
          "адр_рф": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________3",
            "nullable": true
          },
          "адр_гар": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________3",
            "nullable": true
          },
          "адр_инф": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "АдресТип",
        "description": "Сведения об адресе (месте нахождения)<br>• `глн_места`: Глобальный номер места нахождения (GLN места)<br>• `адр_рф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства (по месту пребывания) индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_гар`: Адрес в соответствии с государственным адресным реестром, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительстварегистрации по месту жительства (по месту пребывания) индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_инф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес места жительстварегистрации по месту жительства (по месту пребывания) индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (информация об адресе, в том числе об адресе за пределами территории Российской Федерации)"
      },
      "app__schemas__upd_nullable__seller_title_5_03____________3": {
        "properties": {
          "индекс": {
            "type": "string",
            "maxLength": 6,
            "minLength": 6,
            "pattern": "[0-9]{6}",
            "nullable": true,
            "title": "Индекс"
          },
          "код_регион": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2,
            "pattern": "[0-9]{2}",
            "nullable": true,
            "title": "Код Регион"
          },
          "наим_регион": {
            "type": "string",
            "maxLength": 51,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Регион"
          },
          "район": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Район"
          },
          "город": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Город"
          },
          "насел_пункт": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Насел Пункт"
          },
          "улица": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Улица"
          },
          "дом": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Дом"
          },
          "корпус": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Корпус"
          },
          "кварт": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Кварт"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "title": "АдрРФТип",
        "description": "Сведения об адресе в Российской Федерации, содержащиеся в ЕГРЮЛ<br>• `индекс`: Почтовый индекс<br>• `код_регион`: Код субъекта Российской Федерации<br>• `наим_регион`: Наименование субъекта Российской Федерации<br>• `район`: Район<br>• `город`: Город<br>• `насел_пункт`: Населенный пункт<br>• `улица`: Улица<br>• `дом`: Дом<br>• `корпус`: Корпус<br>• `кварт`: Квартира<br>• `иные_свед`: Иные сведения об адресе в Российской Федерации"
      },
      "app__schemas__upd_nullable__seller_title_5_03____________4": {
        "properties": {
          "номер_прд": {
            "type": "string",
            "maxLength": 30,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Прд"
          },
          "дата_прд": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Прд"
          },
          "сумма_прд": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сумма Прд"
          }
        },
        "type": "object",
        "title": "СвПРДТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03____________5": {
        "properties": {
          "иннфл_пер": {
            "type": "string",
            "maxLength": 12,
            "minLength": 0,
            "pattern": "[0-9]{0,12}",
            "nullable": true,
            "title": "Иннфл Пер"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "осн_довер_фл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ФЛПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03____________6": {
        "properties": {
          "сод_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Сод Опер"
          },
          "вид_опер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Опер"
          },
          "дата_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер"
          },
          "дата_нач_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Нач Пер"
          },
          "дата_окон_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Окон Пер"
          },
          "осн_пер": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Осн Пер",
            "default": []
          },
          "без_док_осн_пер": {
            "type": "string",
            "const": "1",
            "nullable": true,
            "title": "Без Док Осн Пер"
          },
          "св_лиц_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________8",
            "nullable": true
          },
          "тран": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03___________4",
            "nullable": true
          },
          "св_пер_вещи": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________________3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________1": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "кпп": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})([0-9]{2})([0-9A-Z]{2})([0-9]{3})",
            "nullable": true,
            "title": "Кпп"
          }
        },
        "type": "object",
        "title": "СвЮЛУчТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________2": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "ид_стат_л": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Ид Стат Л"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвФЛУчТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________3": {
        "properties": {
          "ид_ном": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Ном"
          },
          "индекс": {
            "type": "string",
            "maxLength": 6,
            "minLength": 6,
            "nullable": true,
            "title": "Индекс"
          },
          "регион": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2,
            "pattern": "[0-9]{2}",
            "nullable": true,
            "title": "Регион"
          },
          "наим_регион": {
            "type": "string",
            "maxLength": 51,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Регион"
          },
          "муницип_район": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________1",
            "nullable": true
          },
          "город_сел_поселен": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________1",
            "nullable": true
          },
          "населен_пункт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________3",
            "nullable": true
          },
          "эл_план_структур": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________1",
            "nullable": true
          },
          "эл_ул_дор_сети": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________1",
            "nullable": true
          },
          "земел_участок": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Земел Участок"
          },
          "здание": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________1"
            },
            "type": "array",
            "title": "Здание",
            "default": []
          },
          "помещ_здания": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________1",
            "nullable": true
          },
          "помещ_квартиры": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "АдрГАРТип",
        "description": "Адрес в соответствии с государственным адресным реестром<br>• `ид_ном`: Уникальный номер адреса объекта адресации в государственном адресном реестре<br>• `индекс`: Почтовый индекс<br>• `регион`: Субъект Российской Федерации (код)<br>• `наим_регион`: Наименование субъекта Российской Федерации<br>• `муницип_район`: Муниципальный район/ городской округ/ внутригородская территория города федерального значения/ муниципальный округ/ федеральная территория<br>• `город_сел_поселен`: Городское поселение/ сельское поселение/ межселенная территория в составе муниципального района/ внутригородской район городского округа<br>• `населен_пункт`: Населенный пункт (город, деревня, село и прочее)<br>• `эл_план_структур`: Элемент планировочной структуры<br>• `эл_ул_дор_сети`: Элемент улично-дорожной сети<br>• `земел_участок`: Земельный участок (номер)<br>• `здание`: Здание (строение), сооружение/ объект незавершенного строительства<br>• `помещ_здания`: Помещение в пределах здания (строения), сооружения/ машино-место<br>• `помещ_квартиры`: Помещение в пределах квартиры"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________4": {
        "properties": {
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Стр"
          },
          "наим_стран": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Стран"
          },
          "адр_текст": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Адр Текст"
          }
        },
        "type": "object",
        "title": "АдрИнфТип",
        "description": "Информация об адресе, в том числе об адресе за пределами территории Российской Федерации<br>• `код_стр`: Код страны<br>• `наим_стран`: Наименование страны<br>• `адр_текст`: Адрес"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________5": {
        "properties": {
          "наим_банк": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Банк"
          },
          "бик": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "[0-9]{9}",
            "nullable": true,
            "title": "Бик"
          },
          "кор_счет": {
            "type": "string",
            "maxLength": 34,
            "minLength": 1,
            "nullable": true,
            "title": "Кор Счет"
          }
        },
        "type": "object",
        "title": "СвБанкТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________6": {
        "properties": {
          "сум_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Нал"
          },
          "без_ндс": {
            "type": "string",
            "const": "без НДС",
            "nullable": true,
            "title": "Без Ндс"
          }
        },
        "type": "object",
        "title": "СумНДСТип",
        "description": "Сумма НДС<br>• `сум_нал`: Значение<br>• `без_ндс`: Без НДС"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________7": {
        "properties": {
          "груз_отпр": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________2",
            "nullable": true
          },
          "он_же": {
            "type": "string",
            "const": "он же",
            "nullable": true,
            "title": "Он Же"
          }
        },
        "type": "object",
        "title": "ГрузОтТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________8": {
        "properties": {
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Окв"
          },
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          },
          "курс_вал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 4,
            "max_digits": 10,
            "nullable": true,
            "title": "Курс Вал"
          }
        },
        "type": "object",
        "title": "ДенИзмТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_____________9": {
        "properties": {
          "пред_орг_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________6",
            "nullable": true
          },
          "фл_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________5",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИнЛицоТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________1": {
        "properties": {
          "тип": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Тип"
          },
          "наим": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим"
          }
        },
        "type": "object",
        "title": "ТипНаимТип",
        "description": "Сведения о типе и наименовании адресного элемента<br>• `тип`: Тип элемента<br>• `наим`: Наименование элемента"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________2": {
        "properties": {
          "ин_конт": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ин Конт"
          },
          "тлф": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Тлф",
            "default": []
          },
          "эл_почта": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Эл Почта",
            "default": []
          }
        },
        "type": "object",
        "title": "КонтактТип",
        "description": "Контактные данные<br>• `ин_конт`: Иные контактные данные<br>• `тлф`: Номер контактного телефона/факс<br>• `эл_почта`: Адрес электронной почты"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________3": {
        "properties": {
          "вид": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вид"
          },
          "наим": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим"
          }
        },
        "type": "object",
        "title": "ВидНаимТип",
        "description": "Сведения о виде и наименовании адресного элемента<br>• `вид`: Вид элемента<br>• `наим`: Наименование элемента"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________4": {
        "properties": {
          "рекв_наим_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Наим Док"
          },
          "рекв_номер_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Номер Док"
          },
          "рекв_дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Рекв Дата Док"
          },
          "рекв_ид_файл_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Файл Док"
          },
          "рекв_ид_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Ид Док"
          },
          "р_ид_сист_хран_д": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Р Ид Сист Хран Д"
          },
          "рекв_урл_сист_док": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Урл Сист Док"
          },
          "рекв_доп_свед_док": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Рекв Доп Свед Док"
          },
          "рекв_ид_рек_сост": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________________1"
            },
            "type": "array",
            "title": "Рекв Ид Рек Сост",
            "default": []
          }
        },
        "type": "object",
        "title": "РеквДокТип",
        "description": "Реквизиты документа<br>• `рекв_наим_док`: Наименование документа<br>• `рекв_номер_док`: Номер документа<br>• `рекв_дата_док`: Дата документа<br>• `рекв_ид_файл_док`: Идентификатор файла обмена документа, подписанного первой стороной<br>• `рекв_ид_док`: Идентификатор документа<br>• `р_ид_сист_хран_д`: Идентифицирующая информация об информационной системе, в которой осуществляется хранение документа, необходимая для запроса информации из информационной системы<br>• `рекв_урл_сист_док`: Сведения в формате URL об информационной системе, которая предоставляет техническую возможность получения информации о документе<br>• `рекв_доп_свед_док`: Дополнительные сведения<br>• `рекв_ид_рек_сост`: Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________5": {
        "properties": {
          "ном_испр": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 3,
            "nullable": true,
            "title": "Ном Испр"
          },
          "дата_испр": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Испр"
          }
        },
        "type": "object",
        "title": "ИспрДокТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________6": {
        "properties": {
          "код_вид_обяз": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Код Вид Обяз"
          },
          "наим_вид_обяз": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Вид Обяз"
          }
        },
        "type": "object",
        "title": "ВидОбязТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________7": {
        "properties": {
          "ном_стр": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 6,
            "nullable": true,
            "title": "Ном Стр"
          },
          "наим_тов": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Тов"
          },
          "океи__тов": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "nullable": true,
            "title": "Океи  Тов"
          },
          "наим_ед_изм": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Ед Изм"
          },
          "кол_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Тов"
          },
          "цена_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов"
          },
          "ст_тов_без_ндс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс"
          },
          "нал_ст": {
            "type": "string",
            "enum": [
              "0%",
              "5%",
              "7%",
              "9,09%",
              "10%",
              "16,67%",
              "18%",
              "18,03%",
              "20%",
              "22%",
              "5/105",
              "7/107",
              "10/110",
              "18/118",
              "20/120",
              "22/122",
              "без НДС",
              "НДС исчисляется налоговым агентом"
            ],
            "nullable": true,
            "title": "Нал Ст"
          },
          "ст_тов_уч_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал"
          },
          "св_дт": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03___________3"
            },
            "type": "array",
            "title": "Св Дт",
            "default": []
          },
          "доп_свед_тов": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________3",
            "nullable": true
          },
          "акциз": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________6",
            "nullable": true
          },
          "сум_нал": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________6",
            "nullable": true
          },
          "инф_пол_фхж2": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________4"
            },
            "type": "array",
            "title": "Инф Пол Фхж2",
            "default": []
          }
        },
        "type": "object",
        "title": "СведТовТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________1": {
        "properties": {
          "номер_счета": {
            "type": "string",
            "maxLength": 34,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Счета"
          },
          "св_банк": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________5",
            "nullable": true
          }
        },
        "type": "object",
        "title": "БанкРеквТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________2": {
        "properties": {
          "окпо": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Окпо"
          },
          "код_опф": {
            "type": "string",
            "maxLength": 5,
            "minLength": 2,
            "nullable": true,
            "title": "Код Опф"
          },
          "полн_наим_опф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 4,
            "nullable": true,
            "title": "Полн Наим Опф"
          },
          "структ_подр": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Структ Подр"
          },
          "инф_для_участ": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Инф Для Участ"
          },
          "сокр_наим": {
            "type": "string",
            "maxLength": 510,
            "minLength": 1,
            "nullable": true,
            "title": "Сокр Наим"
          },
          "ид_св": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03___________1"
          },
          "адрес": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________2",
            "nullable": true
          },
          "банк_рекв": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________1",
            "nullable": true
          },
          "контакт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "УчастникТип",
        "description": "Сведения об участнике факта хозяйственной жизни<br>• `окпо`: Код в общероссийском классификаторе предприятий и организаций<br>• `код_опф`: Код по Общероссийскому классификатору организационно-правовых форм об организационно-правовой форме<br>• `полн_наим_опф`: Полное наименование организационно-правовой формы<br>• `структ_подр`: Структурное подразделение<br>• `инф_для_участ`: Информация для участника документооборота<br>• `сокр_наим`: Сокращенное наименование<br>• `ид_св`: Идентификационные сведения<br>• `адрес`: Адрес<br>• `банк_рекв`: Банковские реквизиты<br>• `контакт`: Контактные данные"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________3": {
        "properties": {
          "ид_стат": {
            "type": "string",
            "enum": [
              "ИО",
              "ИГ"
            ],
            "nullable": true,
            "title": "Ид Стат"
          },
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Стр"
          },
          "наим_стран": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Стран"
          },
          "наим": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим"
          },
          "идентиф": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          }
        },
        "type": "object",
        "title": "СвИнНеУчТип",
        "description": "Сведения об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `ид_стат`: Идентификация статуса<br>• `код_стр`: Код страны<br>• `наим_стран`: Наименование страны<br>• `наим`: Наименование иностранной организации полное/Фамилия, имя, отчество (при наличии) иностранного гражданина<br>• `идентиф`: Идентификатор иностранной организации (иностранного гражданина)<br>• `иные_свед`: Иные сведения для однозначной идентификации иностранной организации (иностранного гражданина)"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________4": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Значен"
          }
        },
        "type": "object",
        "title": "ТекстИнфТип",
        "description": "Текстовая информация<br>• `идентиф`: Идентификатор<br>• `значен`: Значение"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________5": {
        "properties": {
          "номер_док": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Док"
          },
          "дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Док"
          },
          "имя_файл_испр_прод": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Имя Файл Испр Прод"
          },
          "имя_файл_испр_пок": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Имя Файл Испр Пок"
          },
          "испр_док": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________5",
            "nullable": true
          },
          "св_прод": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________2"
            },
            "type": "array",
            "title": "Св Прод",
            "default": []
          },
          "груз_от": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________7"
            },
            "type": "array",
            "title": "Груз От",
            "default": []
          },
          "груз_получ": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________2"
            },
            "type": "array",
            "title": "Груз Получ",
            "default": []
          },
          "св_прд": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________4"
            },
            "type": "array",
            "title": "Св Прд",
            "default": []
          },
          "док_подтв_отгр_ном": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Док Подтв Отгр Ном",
            "default": []
          },
          "св_покуп": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________2"
            },
            "type": "array",
            "title": "Св Покуп",
            "default": []
          },
          "ден_изм": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________8"
          },
          "доп_св_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03__________1___",
            "nullable": true
          },
          "инф_пол_фхж1": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03___________1___",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвСчФактТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________6": {
        "properties": {
          "сум_акциз": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Акциз"
          },
          "без_акциз": {
            "type": "string",
            "const": "без акциза",
            "nullable": true,
            "title": "Без Акциз"
          }
        },
        "type": "object",
        "title": "СумАкцизТип",
        "description": "Сумма акциза:<br>• `сум_акциз`: Сумма акциза<br>• `без_акциз`: Без акциза"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________7": {
        "properties": {
          "ст_тов_без_ндс_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Всего"
          },
          "ст_тов_уч_нал_всего": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал Всего"
          },
          "кол_нетто_вс": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Нетто Вс"
          },
          "сум_нал_всего": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________6",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ВсегоОплТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________8": {
        "properties": {
          "раб_орг_прод": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________5",
            "nullable": true
          },
          "ин_лицо": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________9",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвЛицПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_______________9": {
        "properties": {
          "уид": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Уид"
          },
          "функция": {
            "$ref": "#/components/schemas/UPDFunctionEnum",
            "nullable": true
          },
          "по_факт_хж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "По Факт Хж"
          },
          "наим_док_опр": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док Опр"
          },
          "наим_экон_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Экон Суб Сост"
          },
          "согл_стр_доп_инф": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "nullable": true,
            "title": "Согл Стр Доп Инф"
          },
          "св_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________5"
          },
          "табл_сч_факт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________4",
            "nullable": true
          },
          "св_прод_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________________4",
            "nullable": true
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________________6"
            },
            "type": "array",
            "title": "Подписант",
            "default": []
          },
          "осн_довер_орг_сост": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ДокументТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03________________": {
        "properties": {
          "ном_тов_прослеж": {
            "type": "string",
            "maxLength": 29,
            "minLength": 25,
            "nullable": true,
            "title": "Ном Тов Прослеж"
          },
          "ед_изм_прослеж": {
            "type": "string",
            "maxLength": 4,
            "minLength": 3,
            "pattern": "(?:[0-9]{3})|(?:[0-9]{4})",
            "nullable": true,
            "title": "Ед Изм Прослеж"
          },
          "наим_ед_изм_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Ед Изм Прослеж"
          },
          "кол_в_ед_прослеж": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол В Ед Прослеж"
          },
          "ст_тов_без_ндс_прослеж": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Прослеж"
          },
          "доп_инф_прослеж": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Инф Прослеж"
          }
        },
        "type": "object",
        "title": "СведПрослежТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03________________1": {
        "properties": {
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "данн_ино": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________3",
            "nullable": true
          },
          "наим_оив": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Оив"
          }
        },
        "type": "object",
        "title": "ИдРекСостТип",
        "description": "Идентифицирующие реквизиты экономических субъектов, составивших (сформировавших) документ<br>• `иннюл`: ИНН организации, состоящей на учете в налоговом органе<br>• `иннфл`: ИНН физического лица, в том числе индивидуального предпринимателя<br>• `данн_ино`: Данные об иностранной организации (иностранном гражданине), не состоящей на учете в налоговых органах<br>• `наим_оив`: Краткое наименование органа исполнительной власти (специализированной уполномоченной организации), выдавшего документ"
      },
      "app__schemas__upd_nullable__seller_title_5_03________________2": {
        "properties": {
          "наим_гос_сист": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Гос Сист"
          },
          "учет_ед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Учет Ед"
          },
          "иная_инф": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Иная Инф"
          },
          "ид_ном_учет_ед": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Ид Ном Учет Ед",
            "default": []
          }
        },
        "type": "object",
        "title": "СвГосСистТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03________________3": {
        "properties": {
          "дата_пер_вещ": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Пер Вещ"
          },
          "св_пер_вещ": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Пер Вещ"
          },
          "док_пер_вещ": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПерВещиТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03________________4": {
        "properties": {
          "св_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________6"
          },
          "инф_пол_фхж3": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03___________3___",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвПродПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03________________5": {
        "properties": {
          "ном_довер": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ном Довер"
          },
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "дата_вн_рег_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Вн Рег Довер"
          }
        },
        "type": "object",
        "title": "СвДоверЭлТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03________________6": {
        "properties": {
          "должн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должн"
          },
          "тип_подпис": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Тип Подпис"
          },
          "дата_под_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Под Док"
          },
          "спос_подт_полном": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5",
              "6"
            ],
            "nullable": true,
            "title": "Спос Подт Полном"
          },
          "доп_свед_подп": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Свед Подп"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________",
            "nullable": true
          },
          "св_довер_эл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________________5"
            },
            "type": "array",
            "title": "Св Довер Эл",
            "default": []
          },
          "св_довер_бум": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________7"
            },
            "type": "array",
            "title": "Св Довер Бум",
            "default": []
          }
        },
        "type": "object",
        "title": "ПодписантТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_________________1": {
        "properties": {
          "вид_код": {
            "type": "string",
            "maxLength": 1,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Код"
          },
          "наим": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим"
          }
        },
        "type": "object",
        "title": "ВидНаимКодТип",
        "description": "Сведения о виде (коде) и наименовании адресного элемента<br>• `вид_код`: Вид (код) элемента<br>• `наим`: Наименование элемента"
      },
      "app__schemas__upd_nullable__seller_title_5_03_________________2": {
        "properties": {
          "ам_группа": {
            "type": "string",
            "maxLength": 2,
            "minLength": 1,
            "nullable": true,
            "title": "Ам Группа"
          },
          "код_окоф": {
            "type": "string",
            "maxLength": 16,
            "minLength": 1,
            "nullable": true,
            "title": "Код Окоф"
          },
          "ср_пол_исп_ос": {
            "type": "string",
            "maxLength": 3,
            "minLength": 1,
            "nullable": true,
            "title": "Ср Пол Исп Ос"
          },
          "факт_срок_исп": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 3,
            "nullable": true,
            "title": "Факт Срок Исп"
          }
        },
        "type": "object",
        "title": "НалУчАмортТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_________________3": {
        "properties": {
          "пр_тов_раб": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "nullable": true,
            "title": "Пр Тов Раб"
          },
          "доп_призн": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Призн"
          },
          "надл_отп": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Надл Отп"
          },
          "характер_тов": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Характер Тов"
          },
          "сорт_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Сорт Тов"
          },
          "серия_тов": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Серия Тов"
          },
          "артикул_тов": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Артикул Тов"
          },
          "код_тов": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Код Тов"
          },
          "гтин": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "nullable": true,
            "title": "Гтин"
          },
          "код_кат": {
            "type": "string",
            "maxLength": 27,
            "minLength": 27,
            "nullable": true,
            "title": "Код Кат"
          },
          "код_вид_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "nullable": true,
            "title": "Код Вид Тов"
          },
          "код_вид_пр": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 3,
            "nullable": true,
            "title": "Код Вид Пр"
          },
          "код_тов_окпд2": {
            "type": "string",
            "maxLength": 12,
            "minLength": 2,
            "nullable": true,
            "title": "Код Тов Окпд2"
          },
          "доп_инф_п_вид_о": {
            "type": "string",
            "maxLength": 5,
            "minLength": 5,
            "nullable": true,
            "title": "Доп Инф П Вид О"
          },
          "кр_наим_стр_пр": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Кр Наим Стр Пр",
            "default": []
          },
          "сопр_док_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4"
            },
            "type": "array",
            "title": "Сопр Док Тов",
            "default": []
          },
          "нал_уч_аморт": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_________________2",
            "nullable": true
          },
          "сум_нал_восст": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_____________6",
            "nullable": true
          },
          "свед_прослеж": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________________"
            },
            "type": "array",
            "title": "Свед Прослеж",
            "default": []
          },
          "ном_сред_идент_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03____________________"
            },
            "type": "array",
            "title": "Ном Сред Идент Тов",
            "default": []
          },
          "св_гос_сист": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________________2"
            },
            "type": "array",
            "title": "Св Гос Сист",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСведТовТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_________________4": {
        "properties": {
          "свед_тов": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________7"
            },
            "type": "array",
            "title": "Свед Тов",
            "default": []
          },
          "всего_опл": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03_______________7"
          }
        },
        "type": "object",
        "title": "ТаблСчФактТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_________________5": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "РабОргПродТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_________________6": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "наим_орг_пер": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг Пер"
          },
          "иннюл_пер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 0,
            "pattern": "[0-9]{0,10}",
            "nullable": true,
            "title": "Иннюл Пер"
          },
          "осн_довер_орг_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4",
            "nullable": true
          },
          "осн_полн_пред_пер": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03______________4",
            "nullable": true
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ПредОргПерТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03_________________7": {
        "properties": {
          "дата_выд_довер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "св_ид_довер": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Ид Довер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__upd_nullable__seller_title_5_03________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвДоверБумТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03____________________": {
        "properties": {
          "идент_транс_упак": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Идент Транс Упак"
          },
          "кол_вед_марк": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 26,
            "nullable": true,
            "title": "Кол Вед Марк"
          },
          "пр_парт_марк": {
            "type": "string",
            "maxLength": 55,
            "minLength": 1,
            "nullable": true,
            "title": "Пр Парт Марк"
          },
          "киз": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Киз",
            "default": []
          },
          "ном_упак": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1
            },
            "type": "array",
            "title": "Ном Упак",
            "default": []
          }
        },
        "type": "object",
        "title": "НомСредИдентТовТип"
      },
      "app__schemas__upd_nullable__seller_title_5_03______________________": {
        "properties": {
          "дата_гос_конт": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "((((0[1-9]{1}|1[0-9]{1}|2[0-8]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((29|30)\\.(01|0[3-9]{1}|1[0-2]{1}))|(31\\.(01|03|05|07|08|10|12)))\\.((19|20)[0-9]{2}))|(29\\.02\\.((19|20)(((0|2|4|6|8)(0|4|8))|((1|3|5|7|9)(2|6)))))",
            "nullable": true,
            "title": "Дата Гос Конт"
          },
          "номер_гос_конт": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Гос Конт"
          },
          "лиц_счет_прод": {
            "type": "string",
            "maxLength": 11,
            "minLength": 11,
            "nullable": true,
            "title": "Лиц Счет Прод"
          },
          "код_прод_бюдж_класс": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Прод Бюдж Класс"
          },
          "код_цели_прод": {
            "type": "string",
            "maxLength": 20,
            "minLength": 20,
            "nullable": true,
            "title": "Код Цели Прод"
          },
          "код_казнач_прод": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "nullable": true,
            "title": "Код Казнач Прод"
          },
          "наим_казнач_прод": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Казнач Прод"
          }
        },
        "type": "object",
        "title": "ИнфПродЗаГоскКазнТип"
      },
      "Body_send_upd_title_1_clarification_notification_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_clarification_notification_send_post": {
        "properties": {
          "signature": {
            "type": "string",
            "format": "binary",
            "nullable": true,
            "title": "Signature"
          },
          "mchd_id": {
            "type": "string",
            "nullable": true,
            "title": "Mchd Id",
            "description": "ID машиночитаемой доверенности"
          }
        },
        "type": "object",
        "title": "Body_send_upd_title_1_clarification_notification_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_clarification_notification_send_post"
      },
      "Body_send_upd_title_1_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_send_post": {
        "properties": {
          "signature": {
            "type": "string",
            "format": "binary",
            "title": "Signature",
            "description": " Подпись документа в формате base64"
          },
          "mchd_id": {
            "type": "string",
            "nullable": true,
            "title": "Mchd Id",
            "description": "ID MЧД, если подпись с МЧД"
          }
        },
        "type": "object",
        "required": [
          "signature"
        ],
        "title": "Body_send_upd_title_1_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_send_post"
      },
      "Body_send_upd_title_1_read_confirmation_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_read_confirmation_send_post": {
        "properties": {
          "signature": {
            "type": "string",
            "format": "binary",
            "nullable": true,
            "title": "Signature"
          },
          "mchd_id": {
            "type": "string",
            "nullable": true,
            "title": "Mchd Id",
            "description": "ID машиночитаемой доверенности"
          }
        },
        "type": "object",
        "title": "Body_send_upd_title_1_read_confirmation_v4_docflow_types_upd_docflows__docflow_id__documents_title_1_read_confirmation_send_post"
      },
      "Body_send_upd_title_2_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_2_send_post": {
        "properties": {
          "signature": {
            "type": "string",
            "format": "binary",
            "title": "Signature",
            "description": " Подпись документа в формате base64"
          },
          "mchd_id": {
            "type": "string",
            "nullable": true,
            "title": "Mchd Id",
            "description": "ID машиночитаемой доверенности"
          }
        },
        "type": "object",
        "required": [
          "signature"
        ],
        "title": "Body_send_upd_title_2_document_v4_docflow_types_upd_docflows__docflow_id__documents_title_2_send_post"
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT",
        "description": "Authorization: Bearer {authorizationToken}"
      }
    }
  }
}