{
  "openapi": "3.0.0",
  "info": {
    "title": "api/doki/fs",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "/"
    },
    {
      "url": "https://api.ati.su"
    }
  ],
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "paths": {
    "/gw/formalized-invoices/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": []
          },
          {
            "baggage": []
          }
        ]
      }
    },
    "/gw/formalized-invoices/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": []
          },
          {
            "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": []
          },
          {
            "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/DocflowInputSchema"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешное обновление метаданных документооборота формализованного счёта"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/formalized-invoices/v4/docflows/{docflow_id}/draft": {
      "get": {
        "tags": [
          "Документообороты ФС (public)"
        ],
        "summary": "Получение черновика документооборота",
        "description": "Возвращает черновик документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица отправителя документа (sender).<br>• Документ должен иметь статус черновика.",
        "operationId": "get_docflow_draft_v4_docflows__docflow_id__draft_get",
        "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 документооборота"
          }
        ],
        "responses": {
          "200": {
            "description": "Черновик документооборота",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TitleV501NullableSchema-Output",
                  "nullable": true,
                  "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).<br>• Документ должен иметь статус черновика.",
        "operationId": "update_docflow_draft_v4_docflows__docflow_id__draft_put",
        "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": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TitleV501NullableSchema-Input"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешное обновление черновика документоборота формализованного счёта"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/formalized-invoices/v4/docflows/{docflow_id}/documents/title-1/xml": {
      "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": []
          }
        ],
        "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/fs/docflows/{docflow_id}/documents/title-1/send": {
      "post": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Отправка титула продавца формализованного счёта",
        "description": "Отправляет титул продавца формализованного счета в рамках документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица отправителя документа (sender).",
        "operationId": "send_fs_title_1_document_v4_docflow_types_fs_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_fs_title_1_document_v4_docflow_types_fs_docflows__docflow_id__documents_title_1_send_post"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешная отправка титула продавца формализованного счёта"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/formalized-invoices/v4/docflows/{docflow_id}/documents/title-1-read-confirmation": {
      "post": {
        "tags": [
          "Документы ФС (public)"
        ],
        "summary": "Создание извещения о получении документа",
        "description": "Создает извещение о получении (ИОП) документа.\nГенерация выполняется в системе служебных документов.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).<br>• Документооборот должен находиться в статусе \"waiting_for_read_confirmation\".",
        "operationId": "create_title_1_read_confirmation_v4_docflows__docflow_id__documents_title_1_read_confirmation_post",
        "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 документооборота"
          }
        ],
        "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/fs/docflows/{docflow_id}/documents/title-1-read-confirmation/send": {
      "post": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Отправка извещения о получении титула продавца формализованного счёта",
        "description": "Отправляет извещение о получении титула продавца формализованного счета.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "send_fs_title_1_read_confirmation_document_v4_docflow_types_fs_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_fs_title_1_read_confirmation_document_v4_docflow_types_fs_docflows__docflow_id__documents_title_1_read_confirmation_send_post"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешная отправка извещения о получении титула продавца формализованного счёта"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/formalized-invoices/v4/docflows/{docflow_id}/documents/title-1-clarification-notification": {
      "post": {
        "tags": [
          "Документы ФС (public)"
        ],
        "summary": "Создание Уведомления об уточнении документа",
        "description": "Создает Уведомление об уточнении (УОУ) документа.\nГенерация выполняется в системе служебных документов.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).<br>• Документооборот должен находиться в статусе \"waiting_for_read_confirmation\" или \"done\".",
        "operationId": "create_title_1_clarification_notification_v4_docflows__docflow_id__documents_title_1_clarification_notification_post",
        "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 документооборота"
          }
        ],
        "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/fs/docflows/{docflow_id}/documents/title-1-clarification-notification/send": {
      "post": {
        "tags": [
          "Отправка документов (public)"
        ],
        "summary": "Отправка уведомления об уточнении титула продавца формализованного счёта",
        "description": "Отправляет уведомление об уточнении титула продавца формализованного счета.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Авторизация от лица получателя документа (receiver).",
        "operationId": "send_fs_title_1_clarification_notification_v4_docflow_types_fs_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_fs_title_1_clarification_notification_v4_docflow_types_fs_docflows__docflow_id__documents_title_1_clarification_notification_send_post"
              }
            }
          }
        },
        "responses": {
          "204": {
            "description": "Успешная отправка уведомления об уточнении титула продавца формализованного счёта"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/formalized-invoices/v4/docflows/{docflow_id}/history": {
      "get": {
        "tags": [
          "Документообороты ФС (public)"
        ],
        "summary": "Получение истории документооборота",
        "description": "Возвращает историю изменений статусов документооборота.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.",
        "operationId": "get_docflow_history_v4_docflows__docflow_id__history_get",
        "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 документооборота"
          }
        ],
        "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/formalized-invoices/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": []
          }
        ],
        "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/TitleV501FullSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/formalized-invoices/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": []
          }
        ],
        "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/formalized-invoices/v4/docflows/{docflow_id}/pdf": {
      "get": {
        "tags": [
          "Документообороты ФС (public)"
        ],
        "summary": "Скачивание PDF-файла документа",
        "description": "Возвращает PDF-файл документа.\n\nТребования:<br>• Документооборот должен существовать и быть доступен авторизованному пользователю.<br>• Документооборот не должен быть в статусе черновика.",
        "operationId": "get_docflow_pdf_v4_docflows__docflow_id__pdf_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": "PDF-файл документа",
            "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"
      },
      "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"
      },
      "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"
      },
      "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"
      },
      "Body_send_fs_title_1_clarification_notification_v4_docflow_types_fs_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_fs_title_1_clarification_notification_v4_docflow_types_fs_docflows__docflow_id__documents_title_1_clarification_notification_send_post"
      },
      "Body_send_fs_title_1_document_v4_docflow_types_fs_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 машиночитаемой доверенности"
          }
        },
        "type": "object",
        "required": [
          "signature"
        ],
        "title": "Body_send_fs_title_1_document_v4_docflow_types_fs_docflows__docflow_id__documents_title_1_send_post"
      },
      "Body_send_fs_title_1_read_confirmation_document_v4_docflow_types_fs_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_fs_title_1_read_confirmation_document_v4_docflow_types_fs_docflows__docflow_id__documents_title_1_read_confirmation_send_post"
      },
      "InvoiceFunctionEnum": {
        "type": "string",
        "enum": [
          "0",
          "1"
        ],
        "title": "InvoiceFunctionEnum"
      },
      "TitleV501FullSchema": {
        "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__invoice_full__title_v_501_xml_schema_______________6"
          }
        },
        "type": "object",
        "required": [
          "ид_файл",
          "верс_прог",
          "документ"
        ],
        "title": "TitleV501FullSchema",
        "description": "Параметры в соответствии с приказом ФНС РФ от 20.01.2025 N ЕД-7-26/29@ (<a href=\"https://www.nalog.gov.ru/rn77/about_fts/docs/15800693/\" target=\"_blank\" rel=\"noopener noreferrer\">nalog.gov.ru</a>, <a href=\"https://normativ.kontur.ru/document?moduleId=1&documentId=489224\" target=\"_blank\" rel=\"noopener noreferrer\">normativ.kontur.ru</a>)"
      },
      "TitleV501NullableSchema-Input": {
        "properties": {
          "верс_форм": {
            "type": "string",
            "const": "5.01",
            "title": "Верс Форм",
            "default": "5.01"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__5"
          }
        },
        "type": "object",
        "title": "TitleV501NullableSchema",
        "description": "Параметры в соответствии с приказом ФНС РФ от 20.01.2025 N ЕД-7-26/29@ (<a href=\"https://www.nalog.gov.ru/rn77/about_fts/docs/15800693/\" target=\"_blank\" rel=\"noopener noreferrer\">nalog.gov.ru</a>, <a href=\"https://normativ.kontur.ru/document?moduleId=1&documentId=489224\" target=\"_blank\" rel=\"noopener noreferrer\">normativ.kontur.ru</a>)"
      },
      "TitleV501NullableSchema-Output": {
        "properties": {
          "верс_форм": {
            "type": "string",
            "const": "5.01",
            "title": "Верс Форм",
            "default": "5.01"
          },
          "документ": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__5"
          }
        },
        "type": "object",
        "title": "TitleV501NullableSchema",
        "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>)"
      },
      "______-Input": {
        "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>• `отчество`: Отчество"
      },
      "________________-Input": {
        "properties": {
          "ном_стр": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 6,
            "nullable": true,
            "title": "Ном Стр"
          },
          "наим_тов": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Тов"
          },
          "кол_тов": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 11,
            "max_digits": 26,
            "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": "Ст Тов Без Ндс"
          },
          "ст_тов_уч_нал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "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": "Ст Тов Без Ндс Ски"
          },
          "ст_тов_уч_нал_без_ски": {
            "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": "Нал Ст"
          },
          "нал_ст_ин": {
            "type": "string",
            "maxLength": 35,
            "minLength": 1,
            "nullable": true,
            "title": "Нал Ст Ин"
          },
          "сум_ски": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Ски"
          },
          "процент_ски": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 2,
            "nullable": true,
            "title": "Процент Ски"
          },
          "сум_нал": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Input__1",
            "nullable": true
          },
          "сум_нал_без_ски": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Input__1",
            "nullable": true
          },
          "доп_свед_тов": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_________________2",
            "nullable": true
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "title": "СведТовЦенПокТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema________": {
        "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__invoice_full__title_v_501_xml_schema___________1": {
        "properties": {
          "св_ип": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema___________2",
            "nullable": true
          },
          "св_юл_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________3",
            "nullable": true
          },
          "св_фл_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________4",
            "nullable": true
          },
          "св_ин_не_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИдСвТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema___________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__invoice_full__title_v_501_xml_schema________"
          }
        },
        "type": "object",
        "required": [
          "иннфл",
          "фио"
        ],
        "title": "СвИПТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema____________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__invoice_full__title_v_501_xml_schema____________2": {
        "properties": {
          "глн_места": {
            "type": "string",
            "maxLength": 13,
            "minLength": 13,
            "nullable": true,
            "title": "Глн Места"
          },
          "адр_рф": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema____________3",
            "nullable": true
          },
          "адр_гар": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________5",
            "nullable": true
          },
          "адр_инф": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________6",
            "nullable": true
          }
        },
        "type": "object",
        "title": "АдресТип",
        "description": "Сведения об адресе (месте нахождения)<br>• `глн_места`: Глобальный номер места нахождения (GLN места)<br>• `адр_рф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_гар`: Адрес в соответствии с государственным адресным реестром, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_инф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (информация об адресе, в том числе об адресе за пределами территории Российской Федерации)"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema____________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__invoice_full__title_v_501_xml_schema____________4": {
        "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": 210,
            "minLength": 1,
            "title": "Назн Пл"
          },
          "уник_инф": {
            "type": "string",
            "maxLength": 2000,
            "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": 25,
            "minLength": 25,
            "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))))))([T]([0-1]{1}[0-9]{1}|2[0-3]{1}):([0-5]{1}[0-9]{1}):([0-5]{1}[0-9]{1})([+|-]([01][0-9])[:]([0-5][0-9])))",
            "nullable": true,
            "title": "Огран Оп Дат Вр"
          },
          "усл_опл": {
            "items": {
              "type": "string",
              "maxLength": 1000,
              "minLength": 1
            },
            "type": "array",
            "title": "Усл Опл",
            "default": []
          },
          "усл_оказ_пост": {
            "items": {
              "type": "string",
              "maxLength": 1000,
              "minLength": 1
            },
            "type": "array",
            "title": "Усл Оказ Пост",
            "default": []
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "назн_пл"
        ],
        "title": "ДопСвТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema____________5": {
        "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": 255,
            "minLength": 1,
            "title": "Номер Док"
          },
          "всего_наим": {
            "type": "string",
            "decimal_places": 0,
            "max_digits": 6,
            "nullable": true,
            "title": "Всего Наим"
          },
          "основание": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema________________2"
            },
            "type": "array",
            "title": "Основание",
            "default": []
          },
          "свед_тов_цен_пок": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema__________________"
            },
            "type": "array",
            "minItems": 1,
            "title": "Свед Тов Цен Пок"
          },
          "всего_опл": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________5"
          },
          "доп_св": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema____________4",
            "nullable": true
          },
          "ден_изм": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________7"
          },
          "получ_дн_ср": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________4",
            "nullable": true
          },
          "св_плат": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________4",
            "nullable": true
          },
          "св_прод": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________4"
          },
          "св_покуп": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________4"
          },
          "груз_от": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________4",
            "nullable": true
          },
          "груз_получ": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________4",
            "nullable": true
          },
          "вид_обяз": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema______________5"
            },
            "type": "array",
            "title": "Вид Обяз",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "дата_док",
          "номер_док",
          "свед_тов_цен_пок",
          "всего_опл",
          "ден_изм",
          "св_прод",
          "св_покуп"
        ],
        "title": "СодСчТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_____________1": {
        "properties": {
          "сум_нал": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Нал"
          },
          "без_ндс": {
            "type": "string",
            "const": "без НДС",
            "nullable": true,
            "title": "Без Ндс"
          }
        },
        "type": "object",
        "title": "СумНДСТип",
        "description": "Сумма налога<br>• `сум_нал`: Значение<br>• `без_ндс`: Без налога на добавленную стоимость (НДС)"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_____________2": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________2"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолТип",
        "description": "Информационное поле<br>• `ид_файл_инф_пол`: Идентификатор файла информационного поля<br>• `текст_инф`: Текстовая информация"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_____________3": {
        "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": 13,
            "minLength": 13,
            "pattern": "[0-9]{13}",
            "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__invoice_full__title_v_501_xml_schema_____________4": {
        "properties": {
          "снилс": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "pattern": "(?:[0-9]{3}\\-[0-9]{3}\\-[0-9]{3}\\-[0-9]{2})|(?:[0-9]{3}\\-[0-9]{3}\\-[0-9]{3} [0-9]{2})",
            "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": "Иные Свед"
          },
          "ид_стат_л": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Ид Стат Л"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвФЛУчТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_____________5": {
        "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__invoice_full__title_v_501_xml_schema_________________1",
            "nullable": true
          },
          "город_сел_поселен": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_________________1",
            "nullable": true
          },
          "населен_пункт": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema______________3",
            "nullable": true
          },
          "эл_план_структур": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema______________1",
            "nullable": true
          },
          "эл_ул_дор_сети": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema______________1",
            "nullable": true
          },
          "земел_участок": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Земел Участок"
          },
          "здание": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema____________1"
            },
            "type": "array",
            "title": "Здание",
            "default": []
          },
          "помещ_здания": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema____________1",
            "nullable": true
          },
          "помещ_квартиры": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema____________1",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "ид_ном",
          "код_регион",
          "наим_регион"
        ],
        "title": "АдрГАРТип",
        "description": "Адрес в соответствии с государственным адресным реестром<br>• `ид_ном`: Уникальный номер адреса объекта адресации в государственном адресном реестре<br>• `индекс`: Почтовый индекс<br>• `код_регион`: Код субъекта Российской Федерации<br>• `наим_регион`: Наименование субъекта Российской Федерации<br>• `муницип_район`: Муниципальный район/городской округ/внутригородская территория города федерального значения/муниципальный округ/федеральная территория<br>• `город_сел_поселен`: Городское поселение/сельское поселение/межселенная территория в составе муниципального района/внутригородской район городского округа<br>• `населен_пункт`: Населенный пункт (город, деревня, село и прочее)<br>• `эл_план_структур`: Элемент планировочной структуры<br>• `эл_ул_дор_сети`: Элемент улично-дорожной сети<br>• `земел_участок`: Земельный участок (номер)<br>• `здание`: Здание/строение/сооружение/ объект незавершенного строительства<br>• `помещ_здания`: Помещение в пределах здания/строения/сооружения/машино-место<br>• `помещ_квартиры`: Помещение в пределах квартиры"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_____________6": {
        "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__invoice_full__title_v_501_xml_schema_____________7": {
        "properties": {
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          },
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Окв"
          },
          "уе": {
            "type": "string",
            "const": "у.е.",
            "nullable": true,
            "title": "Уе"
          },
          "курс_вал": {
            "type": "string",
            "decimal_places": 4,
            "max_digits": 10,
            "nullable": true,
            "title": "Курс Вал"
          },
          "опр_уе": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Опр Уе"
          }
        },
        "type": "object",
        "title": "ДенИзмТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema______________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__invoice_full__title_v_501_xml_schema______________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__invoice_full__title_v_501_xml_schema______________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__invoice_full__title_v_501_xml_schema______________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__invoice_full__title_v_501_xml_schema________________1"
            },
            "type": "array",
            "title": "Рекв Ид Рек Сост",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "рекв_наим_док",
          "рекв_номер_док",
          "рекв_дата_док"
        ],
        "title": "РеквДокТип",
        "description": "Реквизиты документа<br>• `рекв_наим_док`: Наименование документа<br>• `рекв_номер_док`: Номер документа<br>• `рекв_дата_док`: Дата документа<br>• `рекв_ид_файл_док`: Идентификатор файла обмена документа, подписанного первой стороной<br>• `рекв_ид_док`: Идентификатор документа<br>• `р_ид_сист_хран_д`: Идентифицирующая информация об информационной системе, в которой осуществляется хранение документа, необходимая для запроса информации из информационной системы<br>• `рекв_урл_сист_док`: Сведения в формате URL об информационной системе, которая предоставляет техническую возможность получения информации о документе<br>• `рекв_доп_свед_док`: Дополнительные сведения<br>• `рекв_ид_рек_сост`: Идентифицирующие реквизиты сторон, составивших документ"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema______________5": {
        "properties": {
          "код_вид_обяз": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Код Вид Обяз"
          },
          "наим_вид_обязм": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Вид Обязм"
          }
        },
        "type": "object",
        "title": "ВидОбязТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_______________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__invoice_full__title_v_501_xml_schema_______________2": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Идентиф"
          },
          "значен": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "title": "Значен"
          }
        },
        "type": "object",
        "required": [
          "идентиф",
          "значен"
        ],
        "title": "ТекстИнфТип",
        "description": "Текстовая информация<br>• `идентиф`: Идентификатор<br>• `значен`: Значение"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_______________3": {
        "properties": {
          "номер_счета": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "title": "Номер Счета"
          },
          "наим_банк": {
            "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": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "[0-9]{9}",
            "title": "Бик"
          },
          "кор_счет": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "title": "Кор Счет"
          },
          "swift_код": {
            "type": "string",
            "maxLength": 11,
            "minLength": 8,
            "nullable": true,
            "title": "Swift Код"
          }
        },
        "type": "object",
        "required": [
          "номер_счета",
          "бик",
          "кор_счет"
        ],
        "title": "БанкРеквТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_______________4": {
        "properties": {
          "окпо": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Окпо"
          },
          "код_опф": {
            "type": "string",
            "maxLength": 5,
            "minLength": 2,
            "pattern": "(?:[0-9]{2})|(?:[0-9]{5})",
            "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__invoice_full__title_v_501_xml_schema___________1"
          },
          "банк_рекв": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_______________3",
            "nullable": true
          },
          "адрес": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema____________2",
            "nullable": true
          },
          "контакт": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema______________2",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "ид_св"
        ],
        "title": "УчастникТип",
        "description": "Сведения об участнике факта хозяйственной жизни<br>• `окпо`: Код по Общероссийскому классификатору предприятий и организаций<br>• `код_опф`: Код по Общероссийскому классификатору организационно-правовых форм<br>• `полн_наим_опф`: Полное наименование организационно-правовой формы<br>• `структ_подр`: Структурное подразделение<br>• `инф_для_участ`: Информация для участника документооборота<br>• `сокр_наим`: Сокращенное наименование<br>• `ид_св`: Идентификационные сведения<br>• `банк_рекв`: Банковские реквизиты получателя денежных средств<br>• `адрес`: Адрес<br>• `контакт`: Контактные данные"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_______________5": {
        "properties": {
          "ст_тов_без_ндс_всего": {
            "type": "string",
            "title": "Ст Тов Без Ндс Всего"
          },
          "ст_тов_уч_нал_всего": {
            "type": "string",
            "title": "Ст Тов Уч Нал Всего"
          },
          "сум_ски_всего": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Ски Всего"
          },
          "сум_нал_всего": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________1"
          }
        },
        "type": "object",
        "required": [
          "ст_тов_без_ндс_всего",
          "ст_тов_уч_нал_всего",
          "сум_нал_всего"
        ],
        "title": "ВсегоОплТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_______________6": {
        "properties": {
          "кнд": {
            "type": "string",
            "const": "1110379",
            "title": "Кнд",
            "default": "1110379"
          },
          "функция": {
            "$ref": "#/components/schemas/InvoiceFunctionEnum"
          },
          "дата_инф": {
            "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": "Вр Инф"
          },
          "сод_сч": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema____________5"
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema________________5"
            },
            "type": "array",
            "minItems": 1,
            "title": "Подписант"
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "функция",
          "дата_инф",
          "вр_инф",
          "сод_сч",
          "подписант"
        ],
        "title": "ДокументТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema________________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__invoice_full__title_v_501_xml_schema_______________1",
            "nullable": true
          },
          "наим_оив": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Оив"
          }
        },
        "type": "object",
        "title": "ИдРекСостТип",
        "description": "Идентифицирующие реквизиты сторон, составивших документ<br>• `иннюл`: ИНН юридического лица, состоящего на учете в налоговом органе<br>• `иннфл`: ИНН физического лица, в том числе индивидуального предпринимателя<br>• `данн_ино`: Данные об иностранной организации (иностранном гражданине), не состоящей на учете в налоговом органе<br>• `наим_оив`: Наименование органа исполнительной власти (специализированной уполномоченной организации), выдавшего документ"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema________________2": {
        "properties": {
          "осн_иное": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Иное"
          },
          "осн_рекв_док": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema______________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ОснованиеТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema________________3": {
        "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",
            "minItems": 1,
            "title": "Ид Ном Учет Ед"
          }
        },
        "type": "object",
        "required": [
          "наим_гос_сист",
          "ид_ном_учет_ед"
        ],
        "title": "СвГосСистТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema________________4": {
        "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",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Урл Сист"
          }
        },
        "type": "object",
        "required": [
          "ном_довер",
          "дата_выд_довер",
          "ид_сист_хран"
        ],
        "title": "СвДоверЭлТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema________________5": {
        "properties": {
          "должн": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "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__invoice_full__title_v_501_xml_schema________"
          },
          "св_довер_эл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema________________4"
            },
            "type": "array",
            "title": "Св Довер Эл",
            "default": []
          },
          "св_довер_бум": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_________________3"
            },
            "type": "array",
            "title": "Св Довер Бум",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "должн",
          "спос_подт_полном",
          "фио"
        ],
        "title": "ПодписантТип",
        "description": "Сведения о лице, подписывающем информацию отправителя в электронной форме<br>• `должн`: Должность<br>• `тип_подпис`: Тип подписи<br>• `дата_под_док`: Дата подписания документа<br>• `спос_подт_полном`: Способ подтверждения полномочий представителя на подписание документа<br>• `доп_свед_подп`: Дополнительные сведения<br>• `фио`: Фамилия, имя, отчество (при наличии)<br>• `св_довер_эл`: Сведения о доверенности в электронной форме в машиночитаемом виде, используемой для подтверждения полномочий представителя<br>• `св_довер_бум`: Сведения о доверенности в форме документа на бумажном носителе, используемой для подтверждения полномочий представителя"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_________________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__invoice_full__title_v_501_xml_schema_________________2": {
        "properties": {
          "пр_тов_раб": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "nullable": true,
            "title": "Пр Тов Раб"
          },
          "доп_призн": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "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": 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": 27,
            "minLength": 27,
            "nullable": true,
            "title": "Код Кат"
          },
          "код_вид_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "nullable": true,
            "title": "Код Вид Тов"
          },
          "св_гос_сист": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema________________3"
            },
            "type": "array",
            "title": "Св Гос Сист",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСведТовТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema_________________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)))))",
            "title": "Дата Выд Довер"
          },
          "вн_ном_довер": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "title": "Вн Ном Довер"
          },
          "св_ид_довер": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Ид Довер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema________",
            "nullable": true
          }
        },
        "type": "object",
        "required": [
          "дата_выд_довер",
          "вн_ном_довер"
        ],
        "title": "СвДоверБумТип"
      },
      "app__schemas__invoice_full__title_v_501_xml_schema__________________": {
        "properties": {
          "ном_стр": {
            "type": "string",
            "title": "Ном Стр"
          },
          "наим_тов": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Тов"
          },
          "кол_тов": {
            "type": "string",
            "decimal_places": 11,
            "max_digits": 26,
            "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": "Наим Ед Изм"
          },
          "цена_тов": {
            "type": "string",
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов"
          },
          "ст_тов_без_ндс": {
            "type": "string",
            "title": "Ст Тов Без Ндс"
          },
          "ст_тов_уч_нал": {
            "type": "string",
            "title": "Ст Тов Уч Нал"
          },
          "цена_тов_без_ски": {
            "type": "string",
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов Без Ски"
          },
          "ст_тов_без_ндс_ски": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Ски"
          },
          "ст_тов_уч_нал_без_ски": {
            "type": "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": "Нал Ст"
          },
          "нал_ст_ин": {
            "type": "string",
            "maxLength": 35,
            "minLength": 1,
            "nullable": true,
            "title": "Нал Ст Ин"
          },
          "сум_ски": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Ски"
          },
          "процент_ски": {
            "type": "string",
            "decimal_places": 0,
            "max_digits": 2,
            "nullable": true,
            "title": "Процент Ски"
          },
          "сум_нал": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________1"
          },
          "сум_нал_без_ски": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________1"
          },
          "доп_свед_тов": {
            "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_________________2",
            "nullable": true
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_full__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "required": [
          "ном_стр",
          "ст_тов_без_ндс",
          "ст_тов_уч_нал",
          "сум_нал",
          "сум_нал_без_ски"
        ],
        "title": "СведТовЦенПокТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema________": {
        "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__invoice_nullable__title_v_501_xml_schema_________-Input__1": {
        "properties": {
          "св_ип": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_________-Input__2",
            "nullable": true
          },
          "св_юл_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________3",
            "nullable": true
          },
          "св_фл_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Input__4",
            "nullable": true
          },
          "св_ин_не_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_______________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИдСвТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_________-Input__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/______-Input"
          }
        },
        "type": "object",
        "title": "СвИПТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_________-Output__1": {
        "properties": {
          "св_ип": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_________-Output__2",
            "nullable": true
          },
          "св_юл_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________3",
            "nullable": true
          },
          "св_фл_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__4",
            "nullable": true
          },
          "св_ин_не_уч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_______________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ИдСвТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_________-Output__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__invoice_nullable__title_v_501_xml_schema________"
          }
        },
        "type": "object",
        "title": "СвИПТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema__________-Input__5": {
        "properties": {
          "всего_наим": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 0,
            "max_digits": 6,
            "nullable": true,
            "title": "Всего Наим"
          },
          "основание": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema________________2"
            },
            "type": "array",
            "title": "Основание",
            "default": []
          },
          "свед_тов_цен_пок": {
            "items": {
              "$ref": "#/components/schemas/________________-Input"
            },
            "type": "array",
            "title": "Свед Тов Цен Пок",
            "default": []
          },
          "всего_опл": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__6"
          },
          "доп_св": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________4",
            "nullable": true
          },
          "ден_изм": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Input__7"
          },
          "получ_дн_ср": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__4",
            "nullable": true
          },
          "св_плат": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__4",
            "nullable": true
          },
          "св_прод": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__4",
            "nullable": true
          },
          "св_покуп": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__4",
            "nullable": true
          },
          "груз_от": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__4",
            "nullable": true
          },
          "груз_получ": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__4",
            "nullable": true
          },
          "вид_обяз": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________5"
            },
            "type": "array",
            "title": "Вид Обяз",
            "default": []
          }
        },
        "type": "object",
        "title": "СодСчТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema__________-Output__5": {
        "properties": {
          "всего_наим": {
            "type": "string",
            "decimal_places": 0,
            "max_digits": 6,
            "nullable": true,
            "title": "Всего Наим"
          },
          "основание": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema________________2"
            },
            "type": "array",
            "title": "Основание",
            "default": []
          },
          "свед_тов_цен_пок": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema__________________-Output"
            },
            "type": "array",
            "title": "Свед Тов Цен Пок",
            "default": []
          },
          "всего_опл": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__6"
          },
          "доп_св": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________4",
            "nullable": true
          },
          "ден_изм": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__7"
          },
          "получ_дн_ср": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__4",
            "nullable": true
          },
          "св_плат": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__4",
            "nullable": true
          },
          "св_прод": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__4",
            "nullable": true
          },
          "св_покуп": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__4",
            "nullable": true
          },
          "груз_от": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__4",
            "nullable": true
          },
          "груз_получ": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__4",
            "nullable": true
          },
          "вид_обяз": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________5"
            },
            "type": "array",
            "title": "Вид Обяз",
            "default": []
          }
        },
        "type": "object",
        "title": "СодСчТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema___________-Input__1": {
        "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__invoice_nullable__title_v_501_xml_schema___________-Input__4": {
        "properties": {
          "снилс": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "pattern": "(?:[0-9]{3}\\-[0-9]{3}\\-[0-9]{3}\\-[0-9]{2})|(?:[0-9]{3}\\-[0-9]{3}\\-[0-9]{3} [0-9]{2})",
            "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": "Иные Свед"
          },
          "ид_стат_л": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Ид Стат Л"
          },
          "фио": {
            "$ref": "#/components/schemas/______-Input",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвФЛУчТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema___________-Input__7": {
        "properties": {
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          },
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Окв"
          },
          "уе": {
            "type": "string",
            "const": "у.е.",
            "nullable": true,
            "title": "Уе"
          },
          "курс_вал": {
            "enum": [
              "number",
              "string"
            ],
            "decimal_places": 4,
            "max_digits": 10,
            "nullable": true,
            "title": "Курс Вал"
          },
          "опр_уе": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Опр Уе"
          }
        },
        "type": "object",
        "title": "ДенИзмТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__1": {
        "properties": {
          "сум_нал": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Нал"
          },
          "без_ндс": {
            "type": "string",
            "const": "без НДС",
            "nullable": true,
            "title": "Без Ндс"
          }
        },
        "type": "object",
        "title": "СумНДСТип",
        "description": "Сумма налога<br>• `сум_нал`: Значение<br>• `без_ндс`: Без налога на добавленную стоимость (НДС)"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__4": {
        "properties": {
          "снилс": {
            "type": "string",
            "maxLength": 14,
            "minLength": 14,
            "pattern": "(?:[0-9]{3}\\-[0-9]{3}\\-[0-9]{3}\\-[0-9]{2})|(?:[0-9]{3}\\-[0-9]{3}\\-[0-9]{3} [0-9]{2})",
            "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": "Иные Свед"
          },
          "ид_стат_л": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Ид Стат Л"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвФЛУчТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__7": {
        "properties": {
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          },
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Окв"
          },
          "уе": {
            "type": "string",
            "const": "у.е.",
            "nullable": true,
            "title": "Уе"
          },
          "курс_вал": {
            "type": "string",
            "decimal_places": 4,
            "max_digits": 10,
            "nullable": true,
            "title": "Курс Вал"
          },
          "опр_уе": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Опр Уе"
          }
        },
        "type": "object",
        "title": "ДенИзмТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema____________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__invoice_nullable__title_v_501_xml_schema____________2": {
        "properties": {
          "глн_места": {
            "type": "string",
            "maxLength": 13,
            "minLength": 13,
            "nullable": true,
            "title": "Глн Места"
          },
          "адр_рф": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________3",
            "nullable": true
          },
          "адр_гар": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________5",
            "nullable": true
          },
          "адр_инф": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________6",
            "nullable": true
          }
        },
        "type": "object",
        "title": "АдресТип",
        "description": "Сведения об адресе (месте нахождения)<br>• `глн_места`: Глобальный номер места нахождения (GLN места)<br>• `адр_рф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_гар`: Адрес в соответствии с государственным адресным реестром, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (реквизиты адреса на территории Российской Федерации)<br>• `адр_инф`: Адрес, указанный в Едином государственном реестре юридических лиц/почтовый адрес/адрес регистрации по месту жительства индивидуального предпринимателя, указанный в Едином государственном реестре индивидуальных предпринимателей (информация об адресе, в том числе об адресе за пределами территории Российской Федерации)"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema____________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__invoice_nullable__title_v_501_xml_schema____________4": {
        "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": 210,
            "minLength": 1,
            "nullable": true,
            "title": "Назн Пл"
          },
          "уник_инф": {
            "type": "string",
            "maxLength": 2000,
            "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": 25,
            "minLength": 25,
            "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))))))([T]([0-1]{1}[0-9]{1}|2[0-3]{1}):([0-5]{1}[0-9]{1}):([0-5]{1}[0-9]{1})([+|-]([01][0-9])[:]([0-5][0-9])))",
            "nullable": true,
            "title": "Огран Оп Дат Вр"
          },
          "усл_опл": {
            "items": {
              "type": "string",
              "maxLength": 1000,
              "minLength": 1
            },
            "type": "array",
            "title": "Усл Опл",
            "default": []
          },
          "усл_оказ_пост": {
            "items": {
              "type": "string",
              "maxLength": 1000,
              "minLength": 1
            },
            "type": "array",
            "title": "Усл Оказ Пост",
            "default": []
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСвТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__4": {
        "properties": {
          "окпо": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Окпо"
          },
          "код_опф": {
            "type": "string",
            "maxLength": 5,
            "minLength": 2,
            "pattern": "(?:[0-9]{2})|(?:[0-9]{5})",
            "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__invoice_nullable__title_v_501_xml_schema_________-Input__1"
          },
          "банк_рекв": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_______________3",
            "nullable": true
          },
          "адрес": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________2",
            "nullable": true
          },
          "контакт": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "УчастникТип",
        "description": "Сведения об участнике факта хозяйственной жизни<br>• `окпо`: Код по Общероссийскому классификатору предприятий и организаций<br>• `код_опф`: Код по Общероссийскому классификатору организационно-правовых форм<br>• `полн_наим_опф`: Полное наименование организационно-правовой формы<br>• `структ_подр`: Структурное подразделение<br>• `инф_для_участ`: Информация для участника документооборота<br>• `сокр_наим`: Сокращенное наименование<br>• `ид_св`: Идентификационные сведения<br>• `банк_рекв`: Банковские реквизиты получателя денежных средств<br>• `адрес`: Адрес<br>• `контакт`: Контактные данные"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__5": {
        "properties": {
          "сод_сч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema__________-Input__5"
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________-Input__5"
            },
            "type": "array",
            "title": "Подписант",
            "default": []
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "title": "ДокументТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Input__6": {
        "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": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Ски Всего"
          },
          "сум_нал_всего": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Input__1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ВсегоОплТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__4": {
        "properties": {
          "окпо": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Окпо"
          },
          "код_опф": {
            "type": "string",
            "maxLength": 5,
            "minLength": 2,
            "pattern": "(?:[0-9]{2})|(?:[0-9]{5})",
            "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__invoice_nullable__title_v_501_xml_schema_________-Output__1"
          },
          "банк_рекв": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_______________3",
            "nullable": true
          },
          "адрес": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________2",
            "nullable": true
          },
          "контакт": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________2",
            "nullable": true
          }
        },
        "type": "object",
        "title": "УчастникТип",
        "description": "Сведения об участнике факта хозяйственной жизни<br>• `окпо`: Код по Общероссийскому классификатору предприятий и организаций<br>• `код_опф`: Код по Общероссийскому классификатору организационно-правовых форм<br>• `полн_наим_опф`: Полное наименование организационно-правовой формы<br>• `структ_подр`: Структурное подразделение<br>• `инф_для_участ`: Информация для участника документооборота<br>• `сокр_наим`: Сокращенное наименование<br>• `ид_св`: Идентификационные сведения<br>• `банк_рекв`: Банковские реквизиты получателя денежных средств<br>• `адрес`: Адрес<br>• `контакт`: Контактные данные"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__5": {
        "properties": {
          "сод_сч": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema__________-Output__5"
          },
          "подписант": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________-Output__5"
            },
            "type": "array",
            "title": "Подписант",
            "default": []
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "title": "ДокументТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________-Output__6": {
        "properties": {
          "ст_тов_без_ндс_всего": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Всего"
          },
          "ст_тов_уч_нал_всего": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал Всего"
          },
          "сум_ски_всего": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Ски Всего"
          },
          "сум_нал_всего": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ВсегоОплТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________2": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_______________2"
            },
            "type": "array",
            "title": "Текст Инф",
            "default": []
          }
        },
        "type": "object",
        "title": "ИнфПолТип",
        "description": "Информационное поле<br>• `ид_файл_инф_пол`: Идентификатор файла информационного поля<br>• `текст_инф`: Текстовая информация"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________3": {
        "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": 13,
            "minLength": 13,
            "pattern": "[0-9]{13}",
            "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__invoice_nullable__title_v_501_xml_schema_____________5": {
        "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__invoice_nullable__title_v_501_xml_schema_________________1",
            "nullable": true
          },
          "город_сел_поселен": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_________________1",
            "nullable": true
          },
          "населен_пункт": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________3",
            "nullable": true
          },
          "эл_план_структур": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________1",
            "nullable": true
          },
          "эл_ул_дор_сети": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________1",
            "nullable": true
          },
          "земел_участок": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Земел Участок"
          },
          "здание": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________1"
            },
            "type": "array",
            "title": "Здание",
            "default": []
          },
          "помещ_здания": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________1",
            "nullable": true
          },
          "помещ_квартиры": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema____________1",
            "nullable": true
          }
        },
        "type": "object",
        "title": "АдрГАРТип",
        "description": "Адрес в соответствии с государственным адресным реестром<br>• `ид_ном`: Уникальный номер адреса объекта адресации в государственном адресном реестре<br>• `индекс`: Почтовый индекс<br>• `код_регион`: Код субъекта Российской Федерации<br>• `наим_регион`: Наименование субъекта Российской Федерации<br>• `муницип_район`: Муниципальный район/городской округ/внутригородская территория города федерального значения/муниципальный округ/федеральная территория<br>• `город_сел_поселен`: Городское поселение/сельское поселение/межселенная территория в составе муниципального района/внутригородской район городского округа<br>• `населен_пункт`: Населенный пункт (город, деревня, село и прочее)<br>• `эл_план_структур`: Элемент планировочной структуры<br>• `эл_ул_дор_сети`: Элемент улично-дорожной сети<br>• `земел_участок`: Земельный участок (номер)<br>• `здание`: Здание/строение/сооружение/ объект незавершенного строительства<br>• `помещ_здания`: Помещение в пределах здания/строения/сооружения/машино-место<br>• `помещ_квартиры`: Помещение в пределах квартиры"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_____________6": {
        "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__invoice_nullable__title_v_501_xml_schema______________-Input__5": {
        "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/______-Input"
          },
          "св_довер_эл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema________________4"
            },
            "type": "array",
            "title": "Св Довер Эл",
            "default": []
          },
          "св_довер_бум": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_______________-Input__3"
            },
            "type": "array",
            "title": "Св Довер Бум",
            "default": []
          }
        },
        "type": "object",
        "title": "ПодписантТип",
        "description": "Сведения о лице, подписывающем информацию отправителя в электронной форме<br>• `должн`: Должность<br>• `тип_подпис`: Тип подписи<br>• `дата_под_док`: Дата подписания документа<br>• `спос_подт_полном`: Способ подтверждения полномочий представителя на подписание документа<br>• `доп_свед_подп`: Дополнительные сведения<br>• `фио`: Фамилия, имя, отчество (при наличии)<br>• `св_довер_эл`: Сведения о доверенности в электронной форме в машиночитаемом виде, используемой для подтверждения полномочий представителя<br>• `св_довер_бум`: Сведения о доверенности в форме документа на бумажном носителе, используемой для подтверждения полномочий представителя"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema______________-Output__5": {
        "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__invoice_nullable__title_v_501_xml_schema________"
          },
          "св_довер_эл": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema________________4"
            },
            "type": "array",
            "title": "Св Довер Эл",
            "default": []
          },
          "св_довер_бум": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_______________-Output__3"
            },
            "type": "array",
            "title": "Св Довер Бум",
            "default": []
          }
        },
        "type": "object",
        "title": "ПодписантТип",
        "description": "Сведения о лице, подписывающем информацию отправителя в электронной форме<br>• `должн`: Должность<br>• `тип_подпис`: Тип подписи<br>• `дата_под_док`: Дата подписания документа<br>• `спос_подт_полном`: Способ подтверждения полномочий представителя на подписание документа<br>• `доп_свед_подп`: Дополнительные сведения<br>• `фио`: Фамилия, имя, отчество (при наличии)<br>• `св_довер_эл`: Сведения о доверенности в электронной форме в машиночитаемом виде, используемой для подтверждения полномочий представителя<br>• `св_довер_бум`: Сведения о доверенности в форме документа на бумажном носителе, используемой для подтверждения полномочий представителя"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema______________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__invoice_nullable__title_v_501_xml_schema______________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__invoice_nullable__title_v_501_xml_schema______________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__invoice_nullable__title_v_501_xml_schema______________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__invoice_nullable__title_v_501_xml_schema________________1"
            },
            "type": "array",
            "title": "Рекв Ид Рек Сост",
            "default": []
          }
        },
        "type": "object",
        "title": "РеквДокТип",
        "description": "Реквизиты документа<br>• `рекв_наим_док`: Наименование документа<br>• `рекв_номер_док`: Номер документа<br>• `рекв_дата_док`: Дата документа<br>• `рекв_ид_файл_док`: Идентификатор файла обмена документа, подписанного первой стороной<br>• `рекв_ид_док`: Идентификатор документа<br>• `р_ид_сист_хран_д`: Идентифицирующая информация об информационной системе, в которой осуществляется хранение документа, необходимая для запроса информации из информационной системы<br>• `рекв_урл_сист_док`: Сведения в формате URL об информационной системе, которая предоставляет техническую возможность получения информации о документе<br>• `рекв_доп_свед_док`: Дополнительные сведения<br>• `рекв_ид_рек_сост`: Идентифицирующие реквизиты сторон, составивших документ"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema______________5": {
        "properties": {
          "код_вид_обяз": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Код Вид Обяз"
          },
          "наим_вид_обязм": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Вид Обязм"
          }
        },
        "type": "object",
        "title": "ВидОбязТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_______________-Input__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": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "св_ид_довер": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Ид Довер"
          },
          "фио": {
            "$ref": "#/components/schemas/______-Input",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвДоверБумТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_______________-Output__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": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Вн Ном Довер"
          },
          "св_ид_довер": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Ид Довер"
          },
          "фио": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema________",
            "nullable": true
          }
        },
        "type": "object",
        "title": "СвДоверБумТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_______________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__invoice_nullable__title_v_501_xml_schema_______________2": {
        "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__invoice_nullable__title_v_501_xml_schema_______________3": {
        "properties": {
          "номер_счета": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Счета"
          },
          "наим_банк": {
            "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": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "[0-9]{9}",
            "nullable": true,
            "title": "Бик"
          },
          "кор_счет": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Кор Счет"
          },
          "swift_код": {
            "type": "string",
            "maxLength": 11,
            "minLength": 8,
            "nullable": true,
            "title": "Swift Код"
          }
        },
        "type": "object",
        "title": "БанкРеквТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema________________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__invoice_nullable__title_v_501_xml_schema_______________1",
            "nullable": true
          },
          "наим_оив": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Оив"
          }
        },
        "type": "object",
        "title": "ИдРекСостТип",
        "description": "Идентифицирующие реквизиты сторон, составивших документ<br>• `иннюл`: ИНН юридического лица, состоящего на учете в налоговом органе<br>• `иннфл`: ИНН физического лица, в том числе индивидуального предпринимателя<br>• `данн_ино`: Данные об иностранной организации (иностранном гражданине), не состоящей на учете в налоговом органе<br>• `наим_оив`: Наименование органа исполнительной власти (специализированной уполномоченной организации), выдавшего документ"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema________________2": {
        "properties": {
          "осн_иное": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Иное"
          },
          "осн_рекв_док": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema______________4",
            "nullable": true
          }
        },
        "type": "object",
        "title": "ОснованиеТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema________________3": {
        "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__invoice_nullable__title_v_501_xml_schema________________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": "string",
            "maxLength": 500,
            "minLength": 1,
            "title": "Ид Сист Хран"
          },
          "урл_сист": {
            "type": "string",
            "maxLength": 500,
            "minLength": 1,
            "nullable": true,
            "title": "Урл Сист"
          }
        },
        "type": "object",
        "required": [
          "ид_сист_хран"
        ],
        "title": "СвДоверЭлТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema_________________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__invoice_nullable__title_v_501_xml_schema_________________2": {
        "properties": {
          "пр_тов_раб": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3",
              "4",
              "5"
            ],
            "nullable": true,
            "title": "Пр Тов Раб"
          },
          "доп_призн": {
            "type": "string",
            "maxLength": 4,
            "minLength": 1,
            "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": 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": 27,
            "minLength": 27,
            "nullable": true,
            "title": "Код Кат"
          },
          "код_вид_тов": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "nullable": true,
            "title": "Код Вид Тов"
          },
          "св_гос_сист": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema________________3"
            },
            "type": "array",
            "title": "Св Гос Сист",
            "default": []
          }
        },
        "type": "object",
        "title": "ДопСведТовТип"
      },
      "app__schemas__invoice_nullable__title_v_501_xml_schema__________________-Output": {
        "properties": {
          "ном_стр": {
            "type": "string",
            "decimal_places": 0,
            "max_digits": 6,
            "nullable": true,
            "title": "Ном Стр"
          },
          "наим_тов": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Тов"
          },
          "кол_тов": {
            "type": "string",
            "decimal_places": 11,
            "max_digits": 26,
            "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": "Наим Ед Изм"
          },
          "цена_тов": {
            "type": "string",
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов"
          },
          "ст_тов_без_ндс": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс"
          },
          "ст_тов_уч_нал": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Уч Нал"
          },
          "цена_тов_без_ски": {
            "type": "string",
            "decimal_places": 11,
            "max_digits": 26,
            "nullable": true,
            "title": "Цена Тов Без Ски"
          },
          "ст_тов_без_ндс_ски": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Ст Тов Без Ндс Ски"
          },
          "ст_тов_уч_нал_без_ски": {
            "type": "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": "Нал Ст"
          },
          "нал_ст_ин": {
            "type": "string",
            "maxLength": 35,
            "minLength": 1,
            "nullable": true,
            "title": "Нал Ст Ин"
          },
          "сум_ски": {
            "type": "string",
            "decimal_places": 2,
            "max_digits": 19,
            "nullable": true,
            "title": "Сум Ски"
          },
          "процент_ски": {
            "type": "string",
            "decimal_places": 0,
            "max_digits": 2,
            "nullable": true,
            "title": "Процент Ски"
          },
          "сум_нал": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__1",
            "nullable": true
          },
          "сум_нал_без_ски": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema___________-Output__1",
            "nullable": true
          },
          "доп_свед_тов": {
            "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_________________2",
            "nullable": true
          },
          "инф_пол": {
            "items": {
              "$ref": "#/components/schemas/app__schemas__invoice_nullable__title_v_501_xml_schema_____________2"
            },
            "type": "array",
            "title": "Инф Пол",
            "default": []
          }
        },
        "type": "object",
        "title": "СведТовЦенПокТип"
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT",
        "description": "Authorization: Bearer {authorizationToken}"
      }
    }
  }
}