{
  "openapi": "3.0.0",
  "info": {
    "title": "api/doki/etrn",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "/"
    },
    {
      "url": "https://api.ati.su"
    }
  ],
  "security": [
    {
      "BearerAuth": []
    }
  ],
  "paths": {
    "/gw/epd/etrn/v1/docflows": {
      "post": {
        "tags": [
          "etrn"
        ],
        "summary": "Создание ЭТрН",
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_1": {
      "put": {
        "tags": [
          "etrn"
        ],
        "summary": "Сохранение черновика первого титула",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          },
          {
            "required": false,
            "schema": {
              "title": "Send To Driver",
              "type": "boolean",
              "default": true
            },
            "name": "send_to_driver",
            "in": "query",
            "description": "Отправка документа водителю"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NullableTitle1DraftData-Input"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/participants": {
      "put": {
        "tags": [
          "etrn"
        ],
        "summary": "Сохранение участников ЭТрН",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/UpdateParticipantSchema"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_1/xml": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Генерация первого титула (XML-файл)",
        "description": "Генерирует первый титул из данных в черновике для подписи",
        "operationId": "generate_title_1_xml_etrn_v1_docflows__docflow_id__titles_title_1_xml_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          },
          {
            "description": "Проставляет headers для автоматического скачивания.",
            "required": false,
            "schema": {
              "title": "Export",
              "type": "boolean",
              "description": "Проставляет headers для автоматического скачивания.",
              "default": false
            },
            "name": "export",
            "in": "query"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SignatoryCredentialsGenerateSchema"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_1/send": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Отправка первого титула",
        "description": "Отправка первого титула документооборота",
        "operationId": "send_title_1_etrn_v1_docflows__docflow_id__titles_title_1_send_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          }
        ],
        "requestBody": {
          "description": "XML файл документа и подпись документа в формате base64",
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_title_1_etrn_v1_docflows__docflow_id__titles_title_1_send_post"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_2": {
      "put": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Сохранение черновика второго титула",
        "description": "Редактирует второй титул документооборота",
        "operationId": "update_title_2_draft_etrn_v1_docflows__docflow_id__titles_title_2_put",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NullableTitle2DraftData"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_2/xml": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Генерация второго титула (XML-файл)",
        "description": "Генерирует второй титул из данных в черновике для подписи",
        "operationId": "generate_title_2_xml_etrn_v1_docflows__docflow_id__titles_title_2_xml_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          },
          {
            "description": "Проставляет headers для автоматического скачивания.",
            "required": false,
            "schema": {
              "title": "Export",
              "type": "boolean",
              "description": "Проставляет headers для автоматического скачивания.",
              "default": false
            },
            "name": "export",
            "in": "query"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SignatoryCredentialsGenerateSchema"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_2/send": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Отправка второго титула",
        "description": "Отправка второго титула документооборота",
        "operationId": "send_title_2_etrn_v1_docflows__docflow_id__titles_title_2_send_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          }
        ],
        "requestBody": {
          "description": "XML файл документа и подпись документа в формате base64",
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_title_2_etrn_v1_docflows__docflow_id__titles_title_2_send_post"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_3": {
      "put": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Сохранение черновика третьего титула",
        "description": "Редактирует третий титул документооборота",
        "operationId": "update_title_3_draft_etrn_v1_docflows__docflow_id__titles_title_3_put",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NullableTitle3DraftData"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_3/xml": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Генерация третьего титула (XML-файл)",
        "description": "Генерирует третий титул из данных в черновике для подписи",
        "operationId": "generate_title_3_xml_etrn_v1_docflows__docflow_id__titles_title_3_xml_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          },
          {
            "description": "Проставляет headers для автоматического скачивания.",
            "required": false,
            "schema": {
              "title": "Export",
              "type": "boolean",
              "description": "Проставляет headers для автоматического скачивания.",
              "default": false
            },
            "name": "export",
            "in": "query"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SignatoryCredentialsGenerateSchema"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_3/send": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Отправка третьего титула",
        "description": "Отправка третьего титула документооборота",
        "operationId": "send_title_3_etrn_v1_docflows__docflow_id__titles_title_3_send_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          }
        ],
        "requestBody": {
          "description": "XML файл документа и подпись документа в формате base64",
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_title_3_etrn_v1_docflows__docflow_id__titles_title_3_send_post"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_4": {
      "put": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Сохранение черновика четвёртого титула",
        "description": "Редактирует четвёртый титул документооборота",
        "operationId": "update_title_4_draft_etrn_v1_docflows__docflow_id__titles_title_4_put",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NullableTitle4DraftData"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_4/xml": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Генерация четвёртого титула (XML-файл)",
        "description": "Генерирует четвёртый титул из данных в черновике для подписи",
        "operationId": "generate_title_4_xml_etrn_v1_docflows__docflow_id__titles_title_4_xml_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          },
          {
            "description": "Проставляет headers для автоматического скачивания.",
            "required": false,
            "schema": {
              "title": "Export",
              "type": "boolean",
              "description": "Проставляет headers для автоматического скачивания.",
              "default": false
            },
            "name": "export",
            "in": "query"
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SignatoryCredentialsGenerateSchema"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response"
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/titles/title_4/send": {
      "post": {
        "tags": [
          "Публичное API"
        ],
        "summary": "Отправка четвёртого титула",
        "description": "Отправка четвёртого титула документооборота",
        "operationId": "send_title_4_etrn_v1_docflows__docflow_id__titles_title_4_send_post",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path",
            "description": "Идентификатор документооборота"
          }
        ],
        "requestBody": {
          "description": "XML файл документа и подпись документа в формате base64",
          "content": {
            "multipart/form-data": {
              "schema": {
                "$ref": "#/components/schemas/Body_send_title_4_etrn_v1_docflows__docflow_id__titles_title_4_send_post"
              }
            }
          },
          "required": true
        },
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/users/v1/participants": {
      "get": {
        "tags": [
          "etrn"
        ],
        "summary": "Поиск участников по ИНН",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Inn",
              "type": "string"
            },
            "name": "inn",
            "in": "query"
          },
          {
            "required": false,
            "schema": {
              "allOf": [
                {
                  "$ref": "#/components/schemas/AstralStandsEnum"
                }
              ],
              "default": "real"
            },
            "name": "astral_stand",
            "in": "query"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "title": "Response Search Users By Inn Etrn Participants  Get",
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/UserHitSchema"
                  }
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}": {
      "get": {
        "tags": [
          "etrn"
        ],
        "summary": "Получение метаинформации по ЭТрН",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DocflowMetaSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/files/{doc_type}": {
      "post": {
        "tags": [
          "etrn"
        ],
        "summary": "Получение ключа доступа для скачивания печатной формы и QR-кода",
        "parameters": [
          {
            "required": true,
            "schema": {
              "$ref": "#/components/schemas/GenerateDocData"
            },
            "name": "doc_type",
            "in": "path"
          },
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/FileIdResponseSchema"
                }
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    },
    "/gw/epd/etrn/v1/docflows/{docflow_id}/files/{file_key}": {
      "get": {
        "tags": [
          "etrn"
        ],
        "summary": "Скачивание файлов печатной формы и QR-кода",
        "parameters": [
          {
            "required": true,
            "schema": {
              "title": "File Key",
              "type": "string"
            },
            "name": "file_key",
            "in": "path"
          },
          {
            "required": true,
            "schema": {
              "title": "Docflow Id",
              "type": "string"
            },
            "name": "docflow_id",
            "in": "path"
          }
        ],
        "responses": {
          "200": {
            "description": "Successful Response",
            "content": {
              "application/json": {
                "schema": {}
              }
            }
          },
          "422": {
            "description": "Ошибка валидации",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/HTTPValidationError"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "DocflowMetaSchema": {
        "title": "DocflowMetaSchema",
        "required": [
          "id",
          "state",
          "participants",
          "flags",
          "history",
          "driver_data",
          "payment_history",
          "astral_stand"
        ],
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "type": "string"
          },
          "state": {
            "$ref": "#/components/schemas/DocflowStates"
          },
          "participants": {
            "$ref": "#/components/schemas/ParticipantsSchema"
          },
          "flags": {
            "title": "Flags",
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Список флагов"
          },
          "history": {
            "title": "History",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/DocflowMetaHistorySchema"
            }
          },
          "driver_data": {
            "$ref": "#/components/schemas/DriverData"
          },
          "number": {
            "title": "Number",
            "type": "string",
            "description": "Номер ЭТРН"
          },
          "date": {
            "title": "Date",
            "pattern": "^(3[01]|[12][0-9]|0[1-9])\\.(1[012]|0[1-9])\\.(2\\d{3})$",
            "type": "string",
            "description": "Дата заполнения ЭТРН",
            "example": "01.04.2023"
          },
          "payment_history": {
            "title": "Payment History",
            "allOf": [
              {
                "$ref": "#/components/schemas/PaymentHistory"
              }
            ],
            "description": "История платежей"
          },
          "astral_stand": {
            "allOf": [
              {
                "$ref": "#/components/schemas/AstralStandsEnum"
              }
            ],
            "description": "Используемый стенд Астрала"
          },
          "template_name": {
            "title": "Template Name",
            "type": "string",
            "description": "Имя шаблона"
          }
        },
        "description": "Общая информация о документообороте"
      },
      "SignatoryCredentialsGenerateSchema": {
        "title": "SignatoryCredentialsGenerateSchema",
        "required": [
          "certificate_id"
        ],
        "type": "object",
        "properties": {
          "certificate_id": {
            "title": "Certificate Id",
            "type": "string",
            "description": "Идентификатор сертификата"
          },
          "power_of_attorney_id": {
            "title": "Power Of Attorney Id",
            "type": "string",
            "description": "Идентификатор МЧД"
          }
        },
        "description": "Схема тела запроса для генерации xml, необходимая для генерации\nполномочий подписанта"
      },
      "Body_send_title_1_etrn_v1_docflows__docflow_id__titles_title_1_send_post": {
        "title": "Body_send_title_1_etrn_v1_docflows__docflow_id__titles_title_1_send_post",
        "required": [
          "document",
          "sign"
        ],
        "type": "object",
        "properties": {
          "document": {
            "title": "Document",
            "type": "string",
            "description": "XML файл документа.",
            "format": "binary"
          },
          "sign": {
            "title": "Sign",
            "type": "string",
            "description": "base64 подпись документа (detached)"
          }
        }
      },
      "NullableTitle2DraftData": {
        "title": "NullableTitle2DraftData",
        "type": "object",
        "properties": {
          "верс_форм": {
            "title": "ВерсФорм",
            "enum": [
              "5.01"
            ],
            "type": "string",
            "default": "5.01"
          },
          "ид_пол_иной": {
            "title": "ИдПолИной",
            "type": "array",
            "items": {
              "maxLength": 46,
              "minLength": 4,
              "type": "string"
            },
            "default": []
          },
          "документ": {
            "title": "Документ",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_2_schema__NullableType8"
              }
            ]
          }
        }
      },
      "Nullable______": {
        "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": "NullableФИОТип"
      },
      "app__core__schemas__title_2_schema__NullableType8": {
        "title": "NullableType8",
        "type": "object",
        "properties": {
          "кнд": {
            "title": "КНД",
            "enum": [
              "1110340"
            ],
            "type": "string",
            "default": "1110340"
          },
          "сод_инф_прв_прием": {
            "title": "СодИнфПрвПрием",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_2_schema__NullableType5"
              }
            ]
          }
        }
      },
      "app__core__schemas__title_2_schema__NullableType3": {
        "title": "NullableType3",
        "type": "object",
        "properties": {
          "факт_кол_ед_изм": {
            "title": "ФактКолЕдИзм",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "итог_разм_штр_рф": {
            "title": "ИтогРазмШтрРФ",
            "type": "number"
          },
          "код_окв": {
            "title": "КодОКВ",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "type": "string"
          },
          "наим_окв": {
            "title": "НаимОКВ",
            "maxLength": 100,
            "minLength": 1,
            "type": "string"
          },
          "итог_разм_штр_ин": {
            "title": "ИтогРазмШтрИн",
            "type": "number"
          },
          "дата_курс_вал": {
            "title": "ДатаКурсВал",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "type": "string"
          },
          "курс_вал": {
            "title": "КурсВал",
            "type": "number"
          },
          "расч_штр": {
            "title": "РасчШтр",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__title_2_schema__NullableType4": {
        "title": "NullableType4",
        "type": "object",
        "properties": {
          "дат_вр_отмет": {
            "title": "ДатВрОтмет",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_отм": {
            "title": "НалКоорТочВрОтм",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "обст_отмет": {
            "title": "ОбстОтмет",
            "maxLength": 2000,
            "minLength": 1,
            "type": "string"
          },
          "отм_акт_взв": {
            "title": "ОтмАктВзв",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "св_акт": {
            "title": "СвАкт",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableRekvDocTip"
            },
            "default": []
          },
          "разм_штр": {
            "title": "РазмШтр",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__title_2_schema__NullableType3"
            },
            "default": []
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__title_2_schema__NullableType5": {
        "title": "NullableType5",
        "type": "object",
        "properties": {
          "зам_прв_прием": {
            "title": "ЗамПрвПрием",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_2_schema__NullableType2"
              }
            ]
          },
          "отмет_прв_прием": {
            "title": "ОтметПрвПрием",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__title_2_schema__NullableType4"
            },
            "default": []
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__titles_common__NullableRekvDocTip": {
        "title": "NullableРеквДокТип",
        "type": "object",
        "properties": {
          "наим_док": {
            "title": "НаимДок",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "номер_док": {
            "title": "НомерДок",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "дата_док": {
            "title": "ДатаДок",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "type": "string"
          },
          "ид_док": {
            "title": "ИдДок",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "доп_свед_док": {
            "title": "ДопСведДок",
            "maxLength": 2000,
            "minLength": 1,
            "type": "string"
          },
          "ид_рек_сост": {
            "title": "ИдРекСост",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableIdRekSostTip"
            }
          }
        }
      },
      "app__core__schemas__titles_common__NullableInfPolTip": {
        "title": "NullableИнфПолТип",
        "type": "object",
        "ид_файл_инф_пол": {
          "title": "ИдФайлИнфПол",
          "maxLength": 36,
          "minLength": 36,
          "type": "string"
        },
        "текст_инф": {
          "title": "ТекстИнф",
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableTextInfTip"
          },
          "default": []
        }
      },
      "app__core__schemas__title_2_schema__NullableType2": {
        "title": "NullableType2",
        "type": "object",
        "properties": {
          "зам_дат_вр_приб": {
            "title": "ЗамДатВрПриб",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_прб": {
            "title": "НалКоорТочВрПрб",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "зам_дат_вр_убыт": {
            "title": "ЗамДатВрУбыт",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_уб": {
            "title": "НалКоорТочВрУб",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "зам_дат_вр_пос_прием": {
            "title": "ЗамДатВрПосПрием",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_прм": {
            "title": "НалКоорТочВрПрм",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "зам_сост_груз": {
            "title": "ЗамСостГруз",
            "maxLength": 10000,
            "minLength": 1,
            "type": "string"
          },
          "зам_масс": {
            "title": "ЗамМасс",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "зам_кол_мест": {
            "title": "ЗамКолМест",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "зам_погр_раб": {
            "title": "ЗамПогрРаб",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__titles_common__NullableIdRekSostTip": {
        "title": "NullableИдРекСостТип",
        "type": "object",
        "properties": {
          "иннюл": {
            "title": "ИННЮЛ",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "type": "string"
          },
          "иннфл": {
            "title": "ИННФЛ",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "type": "string"
          },
          "данн_ино": {
            "title": "ДаннИно",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableSvInNeUchTrNTip"
              }
            ]
          },
          "наим_оив": {
            "title": "НаимОИВ",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__titles_common__NullableTextInfTip": {
        "title": "NullableТекстИнфТип",
        "type": "object",
        "properties": {
          "идентиф": {
            "title": "Идентиф",
            "maxLength": 50,
            "minLength": 1,
            "type": "string"
          },
          "значение": {
            "title": "Значение",
            "maxLength": 2000,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__titles_common__NullableSvInNeUchTrNTip": {
        "title": "NullableСвИнНеУчТрНТип",
        "type": "object",
        "properties": {
          "ид_стат": {
            "title": "ИдСтат",
            "enum": [
              "ЮЛ",
              "ФЛ"
            ],
            "type": "string"
          },
          "стран": {
            "title": "Стран",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "наим": {
            "title": "Наим",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "идентиф": {
            "title": "Идентиф",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "иные_свед": {
            "title": "ИныеСвед",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "уд_личн_ин_фл": {
            "title": "УдЛичнИнФЛ",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableUdLihnInFLTip"
              }
            ]
          }
        }
      },
      "app__core__schemas__titles_common__NullableUdLihnInFLTip": {
        "title": "NullableУдЛичнИнФЛТип",
        "type": "object",
        "properties": {
          "вид_док": {
            "title": "ВидДок",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "ном_док": {
            "title": "НомДок",
            "maxLength": 100,
            "minLength": 1,
            "type": "string"
          },
          "дата_док": {
            "title": "ДатаДок",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "type": "string"
          }
        }
      },
      "DocflowMetaHistorySchema": {
        "title": "DocflowMetaHistorySchema",
        "required": [
          "state",
          "ati_id",
          "contact_id",
          "timestamp"
        ],
        "type": "object",
        "properties": {
          "state": {
            "title": "State",
            "type": "string"
          },
          "ati_id": {
            "title": "Ati Id",
            "type": "string"
          },
          "contact_id": {
            "title": "Contact Id",
            "type": "integer"
          },
          "firm_name": {
            "title": "Firm Name",
            "type": "string",
            "description": "Название фирмы участника"
          },
          "contact_name": {
            "title": "Contact Name",
            "type": "string",
            "description": "Название контакта участника"
          },
          "user_astral_id": {
            "title": "User Astral Id",
            "type": "string"
          },
          "user_astral_name": {
            "title": "User Astral Name",
            "type": "string"
          },
          "timestamp": {
            "title": "Timestamp",
            "type": "string",
            "format": "date-time"
          },
          "sign_info": {
            "$ref": "#/components/schemas/MetaSignInfoSchema"
          }
        },
        "description": "Схема с историей документа в методе получения мета информации"
      },
      "PaymentHistory": {
        "title": "PaymentHistory",
        "type": "object",
        "properties": {
          "title_1": {
            "title": "Title 1",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          },
          "title_2": {
            "title": "Title 2",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          },
          "title_3": {
            "title": "Title 3",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          },
          "title_4": {
            "title": "Title 4",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          },
          "title_5": {
            "title": "Title 5",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          },
          "title_6": {
            "title": "Title 6",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          },
          "title_7": {
            "title": "Title 7",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          },
          "title_8": {
            "title": "Title 8",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PaymentData"
            }
          }
        }
      },
      "PaymentData": {
        "title": "PaymentData",
        "required": [
          "document_id",
          "is_completed"
        ],
        "type": "object",
        "properties": {
          "document_id": {
            "title": "Document Id",
            "type": "string"
          },
          "is_completed": {
            "title": "Is Completed",
            "type": "boolean",
            "description": "Завершен ли флоу для титула успешно"
          }
        }
      },
      "MetaSignInfoSchema": {
        "title": "MetaSignInfoSchema",
        "required": [
          "title",
          "valid_from",
          "valid_until",
          "id",
          "components"
        ],
        "type": "object",
        "properties": {
          "title": {
            "title": "Title",
            "type": "string"
          },
          "valid_from": {
            "title": "Valid From",
            "type": "string"
          },
          "valid_until": {
            "title": "Valid Until",
            "type": "string"
          },
          "id": {
            "title": "Id",
            "type": "string"
          },
          "components": {
            "title": "Components",
            "type": "object",
            "additionalProperties": {
              "type": "string"
            }
          }
        },
        "description": "Информация о подписи в истории"
      },
      "AstralStandsEnum": {
        "title": "AstralStandsEnum",
        "enum": [
          "fake",
          "real"
        ],
        "type": "string",
        "description": "An enumeration."
      },
      "DocflowStates": {
        "title": "DocflowStates",
        "enum": [
          "draft",
          "title_1_accepted",
          "title_1_waiting_operator",
          "title_1_success",
          "title_2_accepted",
          "title_2_waiting_operator",
          "title_2_success",
          "title_3_accepted",
          "title_3_waiting_operator",
          "title_3_success",
          "title_4_accepted",
          "title_4_waiting_operator",
          "title_4_success",
          "title_7_requested",
          "title_7_accepted",
          "title_7_waiting_operator",
          "title_7_success",
          "title_8_accepted",
          "title_8_waiting_operator",
          "title_8_success",
          "operator_failed"
        ],
        "type": "string",
        "description": "Все возможные состояния для документооборота ЭТрН"
      },
      "ParticipantsSchema": {
        "title": "ParticipantsSchema",
        "required": [
          "cargo_sender"
        ],
        "type": "object",
        "properties": {
          "cargo_sender": {
            "title": "Cargo Sender",
            "allOf": [
              {
                "$ref": "#/components/schemas/UserSchema"
              }
            ],
            "description": "Грузоотправитель"
          },
          "cargo_carrier": {
            "title": "Cargo Carrier",
            "allOf": [
              {
                "$ref": "#/components/schemas/UserSchema"
              }
            ],
            "description": "Перевозчик"
          },
          "cargo_receiver": {
            "title": "Cargo Receiver",
            "allOf": [
              {
                "$ref": "#/components/schemas/UserSchema"
              }
            ],
            "description": "Грузополучатель"
          }
        }
      },
      "DriverData": {
        "title": "DriverData",
        "type": "object",
        "properties": {
          "phone": {
            "title": "Phone",
            "pattern": "^[0-9]{11,13}$",
            "type": "string",
            "description": "Телефон выбранного водителя"
          },
          "driver_decision": {
            "allOf": [
              {
                "$ref": "#/components/schemas/DriverDecisionEnum"
              }
            ],
            "description": "Решение водителя"
          },
          "decision_timestamp": {
            "title": "Decision Timestamp",
            "type": "string",
            "description": "Дата и время принятия решения водителем",
            "format": "date-time"
          },
          "rejection_reason": {
            "title": "Rejection Reason",
            "type": "string",
            "description": "Причина отказа водителя"
          },
          "send_in_title_1": {
            "title": "Send In Title 1",
            "type": "boolean",
            "description": "Нужно ли отправлять ЭТРН в АТИ Водитель автоматически при подписании первого титула",
            "default": true
          },
          "is_sent_to_driver": {
            "title": "Is Sent To Driver",
            "type": "boolean",
            "description": "Отправлен ли уже ЭТРН в АТИ Водитель",
            "default": false
          },
          "loading_point": {
            "title": "Loading Point",
            "allOf": [
              {
                "$ref": "#/components/schemas/DriverLoadingPointData"
              }
            ],
            "description": "Точка погрузки"
          },
          "unloading_point": {
            "title": "Unloading Point",
            "allOf": [
              {
                "$ref": "#/components/schemas/DriverLoadingPointData"
              }
            ],
            "description": "Точка разгрузки"
          }
        },
        "description": "Информация относящаяся к интеграции с водителем"
      },
      "DriverDecisionEnum": {
        "title": "DriverDecisionEnum",
        "enum": [
          "accepted",
          "rejected"
        ],
        "type": "string",
        "description": "Возможные решения водителя по этрн"
      },
      "DriverLoadingPointData": {
        "title": "DriverLoadingPointData",
        "required": [
          "timestamp"
        ],
        "type": "object",
        "properties": {
          "arrival_timestamp": {
            "title": "Arrival Timestamp",
            "type": "string",
            "description": "Дата и время прибытия в точку",
            "format": "date-time"
          },
          "departure_timestamp": {
            "title": "Departure Timestamp",
            "type": "string",
            "description": "Дата и время отбытия из точки",
            "format": "date-time"
          },
          "timestamp": {
            "title": "Timestamp",
            "type": "string",
            "description": "Дата и время изменения статуса",
            "format": "date-time"
          },
          "notes": {
            "title": "Notes",
            "type": "string",
            "description": "Примечание, формат key1=value1;key2=value2"
          }
        },
        "description": "Данные от водителя о точке погрузки/разгрузки"
      },
      "VehicleOwnershipTypeEnum": {
        "type": "string",
        "enum": [
          "1",
          "2",
          "3",
          "4",
          "5"
        ],
        "title": "VehicleOwnershipTypeEnum"
      },
      "NullableTitle1DraftData-Input": {
        "properties": {
          "верс_форм": {
            "type": "string",
            "const": "5.01",
            "nullable": true,
            "title": "Верс Форм",
            "default": "5.01"
          },
          "ид_пол_иной": {
            "items": {
              "type": "string",
              "maxLength": 46,
              "minLength": 4,
              "nullable": true
            },
            "type": "array",
            "title": "Ид Пол Иной",
            "nullable": true
          },
          "документ": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable___________-Input__4"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableTitle1DraftData"
      },
      "Body_send_title_2_etrn_v1_docflows__docflow_id__titles_title_2_send_post": {
        "title": "Body_send_title_2_etrn_v1_docflows__docflow_id__titles_title_2_send_post",
        "required": [
          "document",
          "sign"
        ],
        "type": "object",
        "properties": {
          "document": {
            "title": "Document",
            "type": "string",
            "description": "XML файл документа.",
            "format": "binary"
          },
          "sign": {
            "title": "Sign",
            "type": "string",
            "description": "base64 подпись документа (detached)"
          }
        }
      },
      "Body_send_title_3_etrn_v1_docflows__docflow_id__titles_title_3_send_post": {
        "title": "Body_send_title_3_etrn_v1_docflows__docflow_id__titles_title_3_send_post",
        "required": [
          "document",
          "sign"
        ],
        "type": "object",
        "properties": {
          "document": {
            "title": "Document",
            "type": "string",
            "description": "XML файл документа.",
            "format": "binary"
          },
          "sign": {
            "title": "Sign",
            "type": "string",
            "description": "base64 подпись документа (detached)"
          }
        }
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_______-Input__4": {
        "properties": {
          "тс": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable______________-Input__4"
              },
              {
                "type": "null"
              }
            ]
          },
          "прицеп": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable______________-Input__4"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Прицеп"
          },
          "спец_усл_движ": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________5"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Спец Усл Движ"
          },
          "инф_пол": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________2"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Инф Пол"
          }
        },
        "type": "object",
        "title": "NullableСвТСТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_________-Input__1": {
        "properties": {
          "наим_груз": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Груз"
          },
          "код_тов_ном": {
            "type": "string",
            "maxLength": 4,
            "minLength": 4,
            "nullable": true,
            "title": "Код Тов Ном"
          },
          "сост_груз": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Сост Груз"
          },
          "сп_упак": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Сп Упак"
          },
          "вид_тар": {
            "type": "string",
            "maxLength": 2,
            "minLength": 2,
            "nullable": true,
            "title": "Вид Тар"
          },
          "плотн": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Плотн"
          },
          "объем": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Объем"
          },
          "кол_мест_гр": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Кол Мест Гр"
          },
          "уч_гос_сист": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Уч Гос Сист"
          },
          "др_о_груз": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Др О Груз"
          },
          "марк": {
            "items": {
              "type": "string",
              "maxLength": 1000,
              "minLength": 1,
              "nullable": true
            },
            "type": "array",
            "nullable": true,
            "title": "Марк"
          },
          "габар": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________-Input__4"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_оп_груз": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable_____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Св Оп Груз"
          },
          "св_контейн": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________-Input__3"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Св Контейн"
          },
          "пл_мас_груз": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________-Input__5"
              },
              {
                "type": "null"
              }
            ]
          },
          "ценн_груз": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________-Input__2"
              },
              {
                "type": "null"
              }
            ]
          },
          "зак_усл": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable_________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_гос_сист": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable____________"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableОпГрузТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_________-Input__2": {
        "properties": {
          "оп_груз": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_________-Input__1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Оп Груз"
          },
          "об_ценн_гр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________-Input__2"
              },
              {
                "type": "null"
              }
            ]
          },
          "инф_пол": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________2"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Инф Пол"
          }
        },
        "type": "object",
        "title": "NullableСвГрузТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_________-Input__3": {
        "properties": {
          "запр_перегруз": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "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": "Дат Вр Дост Гр"
          },
          "нал_коор_точ_вр_дост": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Нал Коор Точ Вр Дост"
          },
          "срок_дост_гр": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Срок Дост Гр"
          },
          "св_пломба": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Пломба"
          },
          "ук_норм_првз": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Ук Норм Првз"
          },
          "огр_скор": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Огр Скор"
          },
          "мрш_првз": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________5"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_па": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "клим_реж": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable__________-Input__2"
              },
              {
                "type": "null"
              }
            ]
          },
          "инф_пол": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________2"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Инф Пол"
          }
        },
        "type": "object",
        "title": "NullableУказГОТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_________1": {
        "properties": {
          "го_эксп": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Го Эксп"
          },
          "рек_идент_го": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "осн_расч_иным": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвГОТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_________2": {
        "properties": {
          "рек_идент_гп": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "адрес_дост_гр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable_______________2"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвГПТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_________3": {
        "properties": {
          "лицо_па": {
            "type": "string",
            "enum": [
              "Грузоотправитель",
              "Грузополучатель"
            ],
            "nullable": true,
            "title": "Лицо Па"
          },
          "спос_пер_ук_па": {
            "type": "string",
            "const": "Электронное уведомление перевозчика о переадресовке",
            "nullable": true,
            "title": "Спос Пер Ук Па",
            "default": "Электронное уведомление перевозчика о переадресовке"
          },
          "конт_па": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________4"
              },
              {
                "type": "null"
              }
            ]
          },
          "док_пер_полн_па": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвПАТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable__________-Input__2": {
        "properties": {
          "темп_не_ниже": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Темп Не Ниже"
          },
          "темп_не_выше": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Темп Не Выше"
          },
          "влажн_не_ниже": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Влажн Не Ниже"
          },
          "влажн_не_выше": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Влажн Не Выше"
          }
        },
        "type": "object",
        "title": "NullableКлимРежТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable__________-Input__4": {
        "properties": {
          "факт_кол_ед_изм": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Факт Кол Ед Изм"
          },
          "итог_разм_штр_рф": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Итог Разм Штр Рф"
          },
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Окв"
          },
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          },
          "итог_разм_штр_ин": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Итог Разм Штр Ин"
          },
          "дата_курс_вал": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "nullable": true,
            "title": "Дата Курс Вал"
          },
          "курс_вал": {
            "oneOf": [
              {
                "type": "number"
              },
              {
                "type": "string",
                "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$"
              },
              {
                "type": "null"
              }
            ],
            "title": "Курс Вал"
          },
          "расч_штр": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Расч Штр"
          }
        },
        "type": "object",
        "title": "NullableРазмШтрТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable__________-Input__5": {
        "properties": {
          "дат_вр_отмет": {
            "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": "Дат Вр Отмет"
          },
          "нал_коор_точ_вр_отм": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Нал Коор Точ Вр Отм"
          },
          "обст_отмет": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Обст Отмет"
          },
          "св_акт": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Св Акт"
          },
          "разм_штр": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable__________-Input__4"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Разм Штр"
          },
          "св_акт_взв": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Св Акт Взв"
          },
          "инф_пол": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________2"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Инф Пол"
          }
        },
        "type": "object",
        "title": "NullableОтметГОТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable__________1": {
        "properties": {
          "ид_файл_зак": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ид Файл Зак"
          },
          "дат_файл_зак": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "nullable": true,
            "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})",
            "nullable": true,
            "title": "Вр Файл Зак"
          },
          "эп": {
            "type": "string",
            "minLength": 1,
            "nullable": true,
            "title": "Эп"
          }
        },
        "type": "object",
        "title": "NullableИдЗакТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable__________2": {
        "properties": {
          "рек_идент_зак": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "дог_усл_пер": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвЗакТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable___________-Input__2": {
        "properties": {
          "заяв_погр": {
            "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": "Заяв Погр"
          },
          "нал_коор_точ_вр_заяв": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "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": "Ф Дат Вр Приб"
          },
          "нал_коор_точ_вр_ф_погр": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "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": "Ф Дат Вр Убыт"
          },
          "нал_коор_точ_вр_ф_убыт": {
            "type": "string",
            "enum": [
              "0",
              "1"
            ],
            "nullable": true,
            "title": "Нал Коор Точ Вр Ф Убыт"
          },
          "ф_сост_тар": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Ф Сост Тар"
          },
          "ф_сост_уп": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Ф Сост Уп"
          },
          "ф_сост_куз": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Ф Сост Куз"
          },
          "мас_брут_отгр": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Мас Брут Отгр"
          },
          "мет_опр_масс": {
            "type": "string",
            "enum": [
              "01",
              "02",
              "03"
            ],
            "nullable": true,
            "title": "Мет Опр Масс"
          },
          "кол_мест_прием": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Кол Мест Прием"
          },
          "ф_адрес_погр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable_______________2"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_лиц_погр_гр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable______________-Input"
              },
              {
                "type": "null"
              }
            ]
          },
          "влад_инфр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_____________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "осн_дост_об_инфр_док": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "осн_дост_об_инфр_текст": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Осн Дост Об Инфр Текст"
          },
          "инф_пол": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________2"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Инф Пол"
          }
        },
        "type": "object",
        "title": "NullableСвПогрузТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable___________-Input__3": {
        "properties": {
          "номер_тр_н": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Тр Н"
          },
          "дата_тр_н": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "nullable": true,
            "title": "Дата Тр Н"
          },
          "ном_зак": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Зак"
          },
          "дата_зак": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "nullable": true,
            "title": "Дата Зак"
          },
          "ид_зак": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable__________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_го": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_зак": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable__________2"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_гп": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_________2"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_груз": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_________-Input__2"
              },
              {
                "type": "null"
              }
            ]
          },
          "сопр_док": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "указ_го": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_________-Input__3"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_пер": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_водит": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable____________3"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Св Водит"
          },
          "св_тс": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_______-Input__4"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_погруз": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable___________-Input__2"
              },
              {
                "type": "null"
              }
            ]
          },
          "отмет_го": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable__________-Input__5"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Отмет Го"
          },
          "инф_пол": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________2"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Инф Пол"
          }
        },
        "type": "object",
        "title": "NullableСодИнфГОТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable___________-Input__4": {
        "properties": {
          "кнд": {
            "type": "string",
            "const": "1110339",
            "title": "Кнд",
            "default": "1110339",
            "nullable": true
          },
          "наим_эк_суб_сост": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "title": "Наим Эк Суб Сост",
            "nullable": true
          },
          "осн_дов_орг_сост": {
            "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1",
            "nullable": true
          },
          "сод_инф_го": {
            "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable___________-Input__3",
            "nullable": true
          }
        },
        "type": "object",
        "title": "NullableДокументТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable____________": {
        "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,
              "nullable": true
            },
            "type": "array",
            "title": "Ид Ном Учет Ед"
          }
        },
        "type": "object",
        "title": "NullableСвГосСистТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable____________1": {
        "properties": {
          "док_к_тр_н": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Док К Тр Н"
          },
          "док_к_гр": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Док К Гр"
          },
          "док_пер_ценн": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Док Пер Ценн"
          },
          "рек_сопр_вед": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСопрДокТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable____________3": {
        "properties": {
          "ном_ву": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Ву"
          },
          "сер_ву": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Сер Ву"
          },
          "дата_выд_ву": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[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": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Св Сп Ид Подп"
          },
          "тлф": {
            "oneOf": [
              {
                "items": {
                  "type": "string",
                  "maxLength": 20,
                  "minLength": 1,
                  "nullable": true
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Тлф"
          },
          "фио": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/Nullable______"
              },
              {
                "type": "null"
              }
            ]
          },
          "путевой_лист": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Путевой Лист"
          }
        },
        "type": "object",
        "title": "NullableСвВодитТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_____________1": {
        "properties": {
          "совп_гов": {
            "type": "string",
            "enum": [
              "1",
              "2",
              "3"
            ],
            "nullable": true,
            "title": "Совп Гов"
          },
          "об_нет_инф_о_влад": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Об Нет Инф О Влад"
          },
          "рек_влад_инф": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "идент_рек_го": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable______________2"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableВладИнфрТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable______________-Input": {
        "properties": {
          "совп_гоп": {
            "type": "string",
            "enum": [
              "1",
              "2"
            ],
            "nullable": true,
            "title": "Совп Гоп"
          },
          "рек_лиц_погр_гр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "осн_погр_гр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "раб_лиц_погр_гр": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__title_1_schema__Nullable_______________"
              },
              {
                "type": "null"
              }
            ]
          },
          "идент_рек_го": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable______________2"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвЛицПогрГрТип"
      },
      "app__core__schemas__titles_full__title_1_schema__Nullable_______________": {
        "properties": {
          "должность": {
            "type": "string",
            "maxLength": 128,
            "minLength": 1,
            "nullable": true,
            "title": "Должность"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "о_долж_об": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "О Долж Об"
          },
          "оп_иное": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "фио": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/Nullable______"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableРабЛицПогрГрТип"
      },
      "app__core__schemas__title_3_schema__NullableType9": {
        "title": "NullableType9",
        "type": "object",
        "properties": {
          "кнд": {
            "title": "КНД",
            "enum": [
              "1110341"
            ],
            "type": "string",
            "default": "1110341"
          },
          "наим_экон_суб_сост": {
            "title": "НаимЭконСубСост",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "осн_довер_орг_сост": {
            "title": "ОснДоверОргСост",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableRekvDocTip"
              }
            ]
          },
          "сод_инф_гп": {
            "title": "СодИнфГП",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_3_schema__NullableType6"
              }
            ]
          }
        }
      },
      "app__core__schemas__title_3_schema__NullableType6": {
        "title": "NullableType6",
        "type": "object",
        "properties": {
          "сод_оп_отк": {
            "title": "СодОпОтк",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "прич_отк": {
            "title": "ПричОтк",
            "maxLength": 2000,
            "minLength": 1,
            "type": "string"
          },
          "испр_тр_н": {
            "title": "ИспрТрН",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableIsprTip"
              }
            ]
          },
          "прием_груз_гп": {
            "title": "ПриемГрузГП",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_3_schema__NullableType3"
              }
            ]
          },
          "отмет_гп": {
            "title": "ОтметГП",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__title_3_schema__NullableType5"
            },
            "default": []
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__titles_common__NullableIsprTip": {
        "title": "NullableИспрТип",
        "type": "object",
        "properties": {
          "ном_испр": {
            "title": "НомИспр",
            "type": "number"
          },
          "дата_испр": {
            "title": "ДатаИспр",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "type": "string"
          }
        }
      },
      "app__core__schemas__title_3_schema__NullableType3": {
        "title": "NullableType3",
        "type": "object",
        "properties": {
          "ф_дат_вр_приб": {
            "title": "ФДатВрПриб",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_ф_пр": {
            "title": "НалКоорТочВрФПр",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "ф_дат_вр_убыт": {
            "title": "ФДатВрУбыт",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_ф_уб": {
            "title": "НалКоорТочВрФУб",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "заяв_дат_вр_приб": {
            "title": "ЗаявДатВрПриб",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_з_пр": {
            "title": "НалКоорТочВрЗПр",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "мет_опр_масс": {
            "title": "МетОпрМасс",
            "enum": [
              "01",
              "02",
              "03"
            ],
            "type": "string"
          },
          "кол_мест_прием_ч": {
            "title": "КолМестПриемЧ",
            "type": "number"
          },
          "общ_св_сост": {
            "title": "ОбщСвСост",
            "maxLength": 10000,
            "minLength": 1,
            "type": "string"
          },
          "мас_брут_знач_прием": {
            "title": "МасБрутЗначПрием",
            "type": "number"
          },
          "мас_нет_знач_прием": {
            "title": "МасНетЗначПрием",
            "type": "number"
          },
          "объем": {
            "title": "Объем",
            "type": "number"
          },
          "адр_выгруз": {
            "title": "АдрВыгруз",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableAdresPolzTip"
              }
            ]
          },
          "св_прин_по_наим": {
            "title": "СвПринПоНаим",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__title_3_schema__NullableType2"
            },
            "default": []
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__title_3_schema__NullableType5": {
        "title": "NullableType5",
        "type": "object",
        "properties": {
          "дат_вр_отмет": {
            "title": "ДатВрОтмет",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_отм": {
            "title": "НалКоорТочВрОтм",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "обст_отмет": {
            "title": "ОбстОтмет",
            "maxLength": 2000,
            "minLength": 1,
            "type": "string"
          },
          "св_акт": {
            "title": "СвАкт",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableRekvDocTip"
            },
            "default": []
          },
          "разм_штр": {
            "title": "РазмШтр",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__title_3_schema__NullableType4"
            },
            "default": []
          },
          "св_акт_взв": {
            "title": "СвАктВзв",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableRekvDocTip"
            },
            "default": []
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__titles_common__NullableAdresPolzTip": {
        "title": "NullableАдресПользТип",
        "type": "object",
        "properties": {
          "адр_коммент": {
            "title": "АдрКоммент",
            "maxLength": 2000,
            "minLength": 1,
            "type": "string"
          },
          "глн": {
            "title": "ГЛН",
            "maxLength": 13,
            "minLength": 13,
            "type": "string"
          },
          "коорд": {
            "title": "Коорд",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableKoordTip"
              }
            ]
          },
          "адрес_рф": {
            "title": "АдресРФ",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableAdrRFTip"
              }
            ]
          },
          "адрес_инф": {
            "title": "АдресИнф",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableAdrInfTip"
              }
            ]
          },
          "код_гар": {
            "title": "КодГАР",
            "maxLength": 36,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__title_3_schema__NullableType2": {
        "title": "NullableType2",
        "type": "object",
        "properties": {
          "наим_груз": {
            "title": "НаимГруз",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "сост_груз": {
            "title": "СостГруз",
            "maxLength": 10000,
            "minLength": 1,
            "type": "string"
          },
          "плотн": {
            "title": "Плотн",
            "type": "number"
          },
          "объем": {
            "title": "Объем",
            "type": "number"
          },
          "кол_мест": {
            "title": "КолМест",
            "type": "number"
          },
          "пер_марк": {
            "title": "ПерМарк",
            "type": "array",
            "items": {
              "maxLength": 1000,
              "minLength": 1,
              "type": "string"
            },
            "default": []
          },
          "мас_груз": {
            "title": "МасГруз",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableMassaTip"
              }
            ]
          }
        }
      },
      "app__core__schemas__title_3_schema__NullableType4": {
        "title": "NullableType4",
        "type": "object",
        "properties": {
          "факт_кол_ед_изм": {
            "title": "ФактКолЕдИзм",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "итог_разм_штр_рф": {
            "title": "ИтогРазмШтрРФ",
            "type": "number"
          },
          "код_окв": {
            "title": "КодОКВ",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "type": "string"
          },
          "наим_окв": {
            "title": "НаимОКВ",
            "maxLength": 100,
            "minLength": 1,
            "type": "string"
          },
          "итог_разм_штр_ин": {
            "title": "ИтогРазмШтрИн",
            "type": "number"
          },
          "дата_курс_вал": {
            "title": "ДатаКурсВал",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "type": "string"
          },
          "курс_вал": {
            "title": "КурсВал",
            "type": "number"
          },
          "расч_штр": {
            "title": "РасчШтр",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__titles_common__NullableKoordTip": {
        "title": "NullableКоордТип",
        "type": "object",
        "properties": {
          "широта": {
            "title": "Широта",
            "maxLength": 17,
            "minLength": 15,
            "type": "string"
          },
          "долгота": {
            "title": "Долгота",
            "maxLength": 18,
            "minLength": 15,
            "type": "string"
          }
        }
      },
      "app__core__schemas__titles_common__NullableAdrRFTip": {
        "title": "NullableАдрРФТип",
        "type": "object",
        "properties": {
          "индекс": {
            "title": "Индекс",
            "maxLength": 6,
            "minLength": 6,
            "type": "string"
          },
          "код_регион": {
            "title": "КодРегион",
            "maxLength": 2,
            "minLength": 2,
            "pattern": "[0-9]{2}",
            "type": "string"
          },
          "район": {
            "title": "Район",
            "maxLength": 50,
            "minLength": 1,
            "type": "string"
          },
          "город": {
            "title": "Город",
            "maxLength": 50,
            "minLength": 1,
            "type": "string"
          },
          "насел_пункт": {
            "title": "НаселПункт",
            "maxLength": 50,
            "minLength": 1,
            "type": "string"
          },
          "улица": {
            "title": "Улица",
            "maxLength": 50,
            "minLength": 1,
            "type": "string"
          },
          "дом": {
            "title": "Дом",
            "maxLength": 20,
            "minLength": 1,
            "type": "string"
          },
          "корпус": {
            "title": "Корпус",
            "maxLength": 20,
            "minLength": 1,
            "type": "string"
          },
          "кварт": {
            "title": "Кварт",
            "maxLength": 20,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__titles_common__NullableAdrInfTip": {
        "title": "NullableАдрИнфТип",
        "type": "object",
        "properties": {
          "код_стр": {
            "title": "КодСтр",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "type": "string"
          },
          "адр_текст": {
            "title": "АдрТекст",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__titles_common__NullableMassaTip": {
        "title": "NullableМассаТип",
        "type": "object",
        "properties": {
          "мас_нет_знач": {
            "title": "МасНетЗнач",
            "type": "number"
          },
          "мас_брут_знач": {
            "title": "МасБрутЗнач",
            "type": "number"
          },
          "кол_палл": {
            "title": "КолПалл",
            "type": "number"
          }
        }
      },
      "NullableTitle3DraftData": {
        "title": "NullableTitle3DraftData",
        "type": "object",
        "properties": {
          "верс_форм": {
            "title": "ВерсФорм",
            "enum": [
              "5.01"
            ],
            "type": "string",
            "default": "5.01"
          },
          "ид_пол_иной": {
            "title": "ИдПолИной",
            "type": "array",
            "items": {
              "maxLength": 46,
              "minLength": 4,
              "type": "string"
            },
            "default": []
          },
          "документ": {
            "title": "Документ",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_3_schema__NullableType9"
              }
            ]
          }
        }
      },
      "NullableTitle4DraftData": {
        "title": "NullableTitle4DraftData",
        "type": "object",
        "properties": {
          "верс_форм": {
            "title": "ВерсФорм",
            "enum": [
              "5.01"
            ],
            "type": "string",
            "default": "5.01"
          },
          "ид_пол_иной": {
            "title": "ИдПолИной",
            "type": "array",
            "items": {
              "maxLength": 46,
              "minLength": 4,
              "type": "string"
            },
            "default": []
          },
          "документ": {
            "title": "Документ",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_4_schema__NullableType8"
              }
            ]
          }
        }
      },
      "app__core__schemas__title_4_schema__NullableType8": {
        "title": "NullableType8",
        "type": "object",
        "properties": {
          "кнд": {
            "title": "КНД",
            "enum": [
              "1110342"
            ],
            "type": "string",
            "default": "1110342"
          },
          "сод_прв_выд": {
            "title": "СодПрвВыд",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_4_schema__NullableType5"
              }
            ]
          }
        }
      },
      "app__core__schemas__title_4_schema__NullableType5": {
        "title": "NullableType5",
        "type": "object",
        "properties": {
          "зам_прв_выд": {
            "title": "ЗамПрвВыд",
            "allOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__title_4_schema__NullableType2"
              }
            ]
          },
          "отмет_прв_выд": {
            "title": "ОтметПрвВыд",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__title_4_schema__NullableType4"
            },
            "default": []
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__title_4_schema__NullableType2": {
        "title": "NullableType2",
        "type": "object",
        "properties": {
          "зам_дата_вр_приб": {
            "title": "ЗамДатаВрПриб",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_пр": {
            "title": "НалКоорТочВрПр",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "зам_дат_вр_убыт": {
            "title": "ЗамДатВрУбыт",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_уб": {
            "title": "НалКоорТочВрУб",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "зам_дат_вр_пос_выгр": {
            "title": "ЗамДатВрПосВыгр",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_выгр": {
            "title": "НалКоорТочВрВыгр",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "зам_сост_груз": {
            "title": "ЗамСостГруз",
            "maxLength": 10000,
            "minLength": 1,
            "type": "string"
          },
          "зам_раб_выгр": {
            "title": "ЗамРабВыгр",
            "maxLength": 10000,
            "minLength": 1,
            "type": "string"
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__title_4_schema__NullableType4": {
        "title": "NullableType4",
        "type": "object",
        "properties": {
          "дат_вр_отмет": {
            "title": "ДатВрОтмет",
            "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])))",
            "type": "string"
          },
          "нал_коор_точ_вр_отм": {
            "title": "НалКоорТочВрОтм",
            "enum": [
              "0",
              "1"
            ],
            "type": "string"
          },
          "обст_отмет": {
            "title": "ОбстОтмет",
            "maxLength": 2000,
            "minLength": 1,
            "type": "string"
          },
          "отм_акт_взв": {
            "title": "ОтмАктВзв",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          },
          "св_акт": {
            "title": "СвАкт",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableRekvDocTip"
            },
            "default": []
          },
          "разм_штр": {
            "title": "РазмШтр",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__title_4_schema__NullableType3"
            },
            "default": []
          },
          "инф_пол": {
            "title": "ИнфПол",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/app__core__schemas__titles_common__NullableInfPolTip"
            },
            "default": []
          }
        }
      },
      "app__core__schemas__title_4_schema__NullableType3": {
        "title": "NullableType3",
        "type": "object",
        "properties": {
          "факт_кол_ед_изм": {
            "title": "ФактКолЕдИзм",
            "maxLength": 255,
            "minLength": 1,
            "type": "string"
          },
          "итог_разм_штр_рф": {
            "title": "ИтогРазмШтрРФ",
            "type": "number"
          },
          "код_окв": {
            "title": "КодОКВ",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "type": "string"
          },
          "наим_окв": {
            "title": "НаимОКВ",
            "maxLength": 100,
            "minLength": 1,
            "type": "string"
          },
          "итог_разм_штр_ин": {
            "title": "ИтогРазмШтрИн",
            "type": "number"
          },
          "дата_курс_вал": {
            "title": "ДатаКурсВал",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "type": "string"
          },
          "курс_вал": {
            "title": "КурсВал",
            "type": "number"
          },
          "расч_штр": {
            "title": "РасчШтр",
            "maxLength": 1000,
            "minLength": 1,
            "type": "string"
          }
        }
      },
      "app__core__schemas__titles_full__titles_common__Nullable________-Input__4": {
        "properties": {
          "выс_знач": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Выс Знач",
            "nullable": true
          },
          "дл_знач": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Дл Знач"
          },
          "шир_знач": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Шир Знач"
          }
        },
        "type": "object",
        "title": "NullableГабарТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable________-Input__5": {
        "properties": {
          "мас_нет_знач": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Мас Нет Знач"
          },
          "мас_брут_знач": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Мас Брут Знач"
          },
          "кол_палл": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Кол Палл"
          }
        },
        "type": "object",
        "title": "NullableМассаТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable_________1": {
        "properties": {
          "св_ип": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________2"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_юл_уч": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable______________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_ин_не_уч": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________2"
              },
              {
                "type": "null"
              }
            ]
          },
          "св_фл_участ": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________3"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableИдСвТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable__________-Input__6": {
        "properties": {
          "тип": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Тип"
          },
          "марка": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Марка"
          },
          "грузопод": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Грузопод"
          },
          "вместим": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Вместим"
          }
        },
        "type": "object",
        "title": "NullableПарамТСТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable__________1": {
        "properties": {
          "индекс": {
            "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": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Район"
          },
          "город": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Город"
          },
          "насел_пункт": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Насел Пункт"
          },
          "улица": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Улица"
          },
          "дом": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Дом"
          },
          "корпус": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Корпус"
          },
          "кварт": {
            "type": "string",
            "maxLength": 20,
            "minLength": 1,
            "nullable": true,
            "title": "Кварт"
          }
        },
        "type": "object",
        "title": "NullableАдрРФТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable__________2": {
        "properties": {
          "адр_рф": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable__________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "адр_инф": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "код_гар": {
            "type": "string",
            "maxLength": 36,
            "minLength": 1,
            "nullable": true,
            "title": "Код Гар"
          }
        },
        "type": "object",
        "title": "NullableАдресТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable__________3": {
        "properties": {
          "широта": {
            "type": "string",
            "maxLength": 17,
            "minLength": 15,
            "nullable": true,
            "title": "Широта"
          },
          "долгота": {
            "type": "string",
            "maxLength": 18,
            "minLength": 15,
            "nullable": true,
            "title": "Долгота"
          }
        },
        "type": "object",
        "title": "NullableКоордТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable___________-Input__2": {
        "properties": {
          "ст_ценн_гр": {
            "enum": [
              "number",
              "string"
            ],
            "nullable": true,
            "title": "Ст Ценн Гр"
          },
          "код_окв": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Окв"
          },
          "наим_окв": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Окв"
          }
        },
        "type": "object",
        "title": "NullableЦеннГрузТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable___________1": {
        "properties": {
          "код_стр": {
            "type": "string",
            "maxLength": 3,
            "minLength": 3,
            "pattern": "[0-9]{3}",
            "nullable": true,
            "title": "Код Стр"
          },
          "адр_текст": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Адр Текст"
          }
        },
        "type": "object",
        "title": "NullableАдрИнфТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable___________2": {
        "properties": {
          "ид_файл_инф_пол": {
            "type": "string",
            "maxLength": 36,
            "minLength": 36,
            "nullable": true,
            "title": "Ид Файл Инф Пол"
          },
          "текст_инф": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable_____________3"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Текст Инф"
          }
        },
        "type": "object",
        "title": "NullableИнфПолТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable____________-Input__3": {
        "properties": {
          "кол_контейн": {
            "enum": [
              "number",
              "string"
            ],
            "title": "Кол Контейн"
          },
          "ид_контейн": {
            "oneOf": [
              {
                "items": {
                  "type": "string",
                  "maxLength": 255,
                  "minLength": 1,
                  "nullable": true
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Ид Контейн"
          }
        },
        "type": "object",
        "title": "NullableСвКонтейнТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable____________1": {
        "properties": {
          "наим_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Док"
          },
          "номер_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Док"
          },
          "дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "title": "Дата Док",
            "nullable": true
          },
          "ид_док": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ид Док"
          },
          "доп_свед_док": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Доп Свед Док"
          },
          "ид_рек_сост": {
            "items": {
              "oneOf": [
                {
                  "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable______________2"
                },
                {
                  "type": "null"
                }
              ]
            },
            "type": "array",
            "title": "Ид Рек Сост"
          }
        },
        "type": "object",
        "title": "NullableРеквДокТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable____________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": 15,
            "minLength": 15,
            "pattern": "[0-9]{15}",
            "nullable": true,
            "title": "Огрнип"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/Nullable______"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвИПТрНТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable____________3": {
        "properties": {
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "nullable": true,
            "title": "Иннфл"
          },
          "иные_свед": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Иные Свед"
          },
          "фио": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/Nullable______"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвФЛТрНТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable____________4": {
        "properties": {
          "тлф": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1,
              "nullable": true
            },
            "type": "array",
            "nullable": true,
            "title": "Тлф"
          },
          "эл_почта": {
            "items": {
              "type": "string",
              "maxLength": 255,
              "minLength": 1,
              "nullable": true
            },
            "type": "array",
            "nullable": true,
            "title": "Эл Почта"
          },
          "ин_конт": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ин Конт"
          }
        },
        "type": "object",
        "title": "NullableКонтактТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable____________5": {
        "properties": {
          "мрш_текст": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Мрш Текст"
          },
          "мрш_маш_чит": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Мрш Маш Чит"
          }
        },
        "type": "object",
        "title": "NullableСведМршТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable_____________1": {
        "properties": {
          "ном_оон": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Оон"
          },
          "над_отг_наим": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Над Отг Наим"
          },
          "тех_наим": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Тех Наим"
          },
          "описание": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Описание"
          },
          "клас": {
            "type": "string",
            "maxLength": 3,
            "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": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Код Огр Чер Тун"
          },
          "наз_радионук": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наз Радионук"
          },
          "опис_физ_хим_форм": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Опис Физ Хим Форм"
          },
          "макс_акт": {
            "type": "string",
            "maxLength": 1000,
            "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": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Индекс Без"
          },
          "опоз_знак": {
            "type": "string",
            "maxLength": 10000,
            "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": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Проц Смеси"
          },
          "дат_ист_вр_удер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "nullable": true,
            "title": "Дат Ист Вр Удер"
          },
          "конт_темпер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Конт Темпер"
          },
          "авар_темпер": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Авар Темпер"
          }
        },
        "type": "object",
        "title": "NullableСвОпГрузТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable_____________3": {
        "properties": {
          "идентиф": {
            "type": "string",
            "maxLength": 50,
            "minLength": 1,
            "nullable": true,
            "title": "Идентиф"
          },
          "значение": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Значение"
          }
        },
        "type": "object",
        "title": "NullableТекстИнфТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable______________-Input__4": {
        "properties": {
          "ном_стс": {
            "type": "string",
            "maxLength": 10,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Стс"
          },
          "номер_вин": {
            "type": "string",
            "maxLength": 17,
            "minLength": 1,
            "nullable": true,
            "title": "Номер Вин"
          },
          "рег_номер": {
            "type": "string",
            "maxLength": 9,
            "minLength": 1,
            "nullable": true,
            "title": "Рег Номер"
          },
          "тип_влад": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/VehicleOwnershipTypeEnum"
              },
              {
                "type": "null"
              }
            ]
          },
          "пар_тс": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable__________-Input__6"
              },
              {
                "type": "null"
              }
            ]
          },
          "осн_ар_лиз": {
            "oneOf": [
              {
                "items": {
                  "oneOf": [
                    {
                      "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________1"
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "type": "array"
              },
              {
                "type": "null"
              }
            ],
            "title": "Осн Ар Лиз"
          }
        },
        "type": "object",
        "title": "NullableПараметрыТСТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable______________1": {
        "properties": {
          "наим_орг": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Наим Орг"
          },
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "nullable": true,
            "title": "Иннюл"
          },
          "кпп": {
            "type": "string",
            "maxLength": 9,
            "minLength": 9,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})([0-9]{2})([0-9A-Z]{2})([0-9]{3})",
            "nullable": true,
            "title": "Кпп"
          }
        },
        "type": "object",
        "title": "NullableСвЮЛУчТрНТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable______________2": {
        "properties": {
          "иннюл": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{8}",
            "title": "Иннюл",
            "nullable": true
          },
          "иннфл": {
            "type": "string",
            "maxLength": 12,
            "minLength": 12,
            "pattern": "([0-9]{1}[1-9]{1}|[1-9]{1}[0-9]{1})[0-9]{10}",
            "title": "Иннфл",
            "nullable": true
          },
          "данн_ино": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________2"
              },
              {
                "type": "null"
              }
            ]
          },
          "наим_оив": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "title": "Наим Оив",
            "nullable": true
          }
        },
        "type": "object",
        "title": "NullableИдРекСостТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable_______________1": {
        "properties": {
          "вид_док": {
            "type": "string",
            "maxLength": 1000,
            "minLength": 1,
            "nullable": true,
            "title": "Вид Док"
          },
          "ном_док": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Док"
          },
          "дата_док": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "nullable": true,
            "title": "Дата Док"
          }
        },
        "type": "object",
        "title": "NullableУдЛичнИнФЛТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable_______________2": {
        "properties": {
          "адр_коммент": {
            "type": "string",
            "maxLength": 2000,
            "minLength": 1,
            "nullable": true,
            "title": "Адр Коммент"
          },
          "глн": {
            "type": "string",
            "maxLength": 13,
            "minLength": 13,
            "nullable": true,
            "title": "Глн"
          },
          "коорд": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable__________3"
              },
              {
                "type": "null"
              }
            ]
          },
          "адрес_рф": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable__________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "адрес_инф": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable___________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "код_гар": {
            "type": "string",
            "maxLength": 36,
            "minLength": 1,
            "nullable": true,
            "title": "Код Гар"
          }
        },
        "type": "object",
        "title": "NullableАдресПользТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable________________1": {
        "properties": {
          "инн_участ": {
            "type": "string",
            "maxLength": 12,
            "minLength": 10,
            "nullable": true,
            "title": "Инн Участ"
          },
          "инф_участ": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Инф Участ"
          }
        },
        "type": "object",
        "title": "NullableИнфДляУчастТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable________________2": {
        "properties": {
          "ид_стат": {
            "type": "string",
            "enum": [
              "ЮЛ",
              "ФЛ"
            ],
            "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": "Иные Свед"
          },
          "уд_личн_ин_фл": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable_______________1"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСвИнНеУчТрНТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable________________3": {
        "properties": {
          "инф_для_участ": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable________________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "ид_св": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable_________1"
              },
              {
                "type": "null"
              }
            ]
          },
          "адрес": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable__________2"
              },
              {
                "type": "null"
              }
            ]
          },
          "контакт": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________4"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableУчастникТрНТип"
      },
      "app__core__schemas__titles_full__titles_common__Nullable________________5": {
        "properties": {
          "ном_ср": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ном Ср"
          },
          "дата_ср": {
            "type": "string",
            "maxLength": 10,
            "minLength": 10,
            "pattern": "(((0[1-9]{1}|[1-2]{1}[0-9]{1})\\.(0[1-9]{1}|1[0-2]{1}))|((30)\\.(01|0[3-9]{1}|1[0-2]{1}))|((31)\\.(01|03|05|07|08|10|12)))\\.(19[0-9]{2}|20[0-9]{2})",
            "nullable": true,
            "title": "Дата Ср"
          },
          "срок_ср": {
            "type": "string",
            "maxLength": 100,
            "minLength": 1,
            "nullable": true,
            "title": "Срок Ср"
          },
          "ид_ср": {
            "type": "string",
            "maxLength": 255,
            "minLength": 1,
            "nullable": true,
            "title": "Ид Ср"
          },
          "свед_мрш": {
            "oneOf": [
              {
                "$ref": "#/components/schemas/app__core__schemas__titles_full__titles_common__Nullable____________5"
              },
              {
                "type": "null"
              }
            ]
          }
        },
        "type": "object",
        "title": "NullableСпецУслДвижТип"
      },
      "Body_send_title_4_etrn_v1_docflows__docflow_id__titles_title_4_send_post": {
        "title": "Body_send_title_4_etrn_v1_docflows__docflow_id__titles_title_4_send_post",
        "required": [
          "document",
          "sign"
        ],
        "type": "object",
        "properties": {
          "document": {
            "title": "Document",
            "type": "string",
            "description": "XML файл документа.",
            "format": "binary"
          },
          "sign": {
            "title": "Sign",
            "type": "string",
            "description": "base64 подпись документа (detached)"
          }
        }
      },
      "UpdateParticipantSchema": {
        "title": "UpdateParticipantSchema",
        "type": "object",
        "properties": {
          "cargo_carrier": {
            "$ref": "#/components/schemas/UserData"
          },
          "cargo_receiver": {
            "$ref": "#/components/schemas/UserData"
          }
        }
      },
      "UserData": {
        "title": "UserData",
        "required": [
          "firm_id",
          "contact_id"
        ],
        "type": "object",
        "properties": {
          "firm_id": {
            "title": "Firm Id",
            "pattern": "[0-9]+",
            "type": "string",
            "description": "Идентификатор пользователя в АТИ"
          },
          "contact_id": {
            "title": "Contact Id",
            "type": "integer",
            "description": "Идентификатор контакта пользователя в фирме"
          },
          "user_astral_id": {
            "title": "User Astral Id",
            "type": "string",
            "description": "Идентификатор пользователя в Астрал"
          }
        },
        "description": "Информация о пользователе, где \"cargo_sender\" - это отправитель, \"cargo_carrier\" - перевозчик, \"cargo_receiver\" - получатель"
      },
      "FileIdResponseSchema": {
        "title": "FileIdResponseSchema",
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "type": "string"
          }
        },
        "description": "Возвращает id файла"
      },
      "GenerateDocData": {
        "title": "GenerateDocData",
        "enum": [
          "pdf",
          "qr"
        ],
        "type": "string",
        "description": "An enumeration."
      },
      "UserHitSchema": {
        "title": "UserHitSchema",
        "required": [
          "astral_user_id",
          "firm_id",
          "name",
          "account_id",
          "default_contact_id"
        ],
        "type": "object",
        "properties": {
          "astral_user_id": {
            "title": "Astral User Id",
            "type": "string",
            "description": "Идентификатор astral_user"
          },
          "firm_id": {
            "title": "Firm Id",
            "type": "string",
            "description": "Идентификатор фирмы"
          },
          "name": {
            "title": "Name",
            "type": "string",
            "description": "Наименование участника"
          },
          "account_id": {
            "title": "Account Id",
            "type": "string",
            "description": "Идентификатор аккаунта АТИ"
          },
          "default_contact_id": {
            "title": "Default Contact Id",
            "type": "integer",
            "description": "Идентификатор контакта аккаунта по умолчанию"
          }
        }
      },
      "HTTPValidationError": {
        "properties": {
          "detail": {
            "items": {
              "$ref": "#/components/schemas/ValidationError"
            },
            "type": "array",
            "title": "Detail"
          }
        },
        "type": "object",
        "title": "HTTPValidationError"
      },
      "IssuerSchema": {
        "title": "IssuerSchema",
        "required": [
          "OGRN",
          "INN",
          "CN"
        ],
        "type": "object",
        "properties": {
          "OGRN": {
            "title": "Ogrn",
            "type": "string"
          },
          "INN": {
            "title": "Inn",
            "type": "string"
          },
          "CN": {
            "title": "Cn",
            "type": "string"
          }
        },
        "description": "Описывает схему документа в MongoDB.\nВсе вложенные в схему документы должны наследоваться от этого класса."
      },
      "ScopeOfAuthorityBuyerSchema": {
        "title": "ScopeOfAuthorityBuyerSchema",
        "enum": [
          "1",
          "2",
          "3",
          "29"
        ],
        "type": "string",
        "description": "An enumeration."
      },
      "ScopeOfAuthorityRoutersSchema": {
        "title": "ScopeOfAuthorityRoutersSchema",
        "required": [
          "sender",
          "receiver"
        ],
        "type": "object",
        "properties": {
          "sender": {
            "$ref": "#/components/schemas/ScopeOfAuthoritySellerSchema"
          },
          "receiver": {
            "$ref": "#/components/schemas/ScopeOfAuthorityBuyerSchema"
          }
        },
        "description": "Область полномочий"
      },
      "ScopeOfAuthoritySellerSchema": {
        "type": "string",
        "enum": [
          "0",
          "1",
          "2",
          "3",
          "4",
          "5",
          "6"
        ],
        "title": "ScopeOfAuthoritySellerSchema"
      },
      "SignatoryCredentialSchema": {
        "title": "SignatoryCredentialSchema",
        "required": [
          "scope_of_authority",
          "status",
          "foundation_for_trust",
          "position",
          "certificate_id"
        ],
        "type": "object",
        "properties": {
          "scope_of_authority": {
            "$ref": "#/components/schemas/ScopeOfAuthorityRoutersSchema"
          },
          "status": {
            "allOf": [
              {
                "$ref": "#/components/schemas/SigneeStatusSchema"
              }
            ],
            "description": "Статус"
          },
          "foundation_for_trust": {
            "title": "Foundation For Trust",
            "maxLength": 255,
            "minLength": 1,
            "type": "string",
            "description": "Основные полномочия"
          },
          "foundation_for_trust_organization": {
            "title": "Foundation For Trust Organization",
            "maxLength": 255,
            "minLength": 1,
            "type": "string",
            "description": "Основные полномочия организации"
          },
          "position": {
            "title": "Position",
            "maxLength": 128,
            "minLength": 1,
            "type": "string",
            "description": "Должность"
          },
          "certificate_id": {
            "title": "Certificate Id",
            "type": "string"
          }
        },
        "description": "Описывает схему документа в MongoDB.\nВсе вложенные в схему документы должны наследоваться от этого класса."
      },
      "SigneeStatusSchema": {
        "title": "SigneeStatusSchema",
        "enum": [
          "3",
          "4",
          "5",
          "6"
        ],
        "type": "string",
        "description": "An enumeration."
      },
      "UserCertificateSchema": {
        "title": "UserCertificateSchema",
        "required": [
          "id",
          "valid_from",
          "valid_until",
          "issuer",
          "components",
          "title"
        ],
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "type": "string"
          },
          "valid_from": {
            "title": "Valid From",
            "type": "string",
            "format": "date-time"
          },
          "valid_until": {
            "title": "Valid Until",
            "type": "string",
            "format": "date-time"
          },
          "serial": {
            "title": "Serial",
            "type": "string"
          },
          "issuer": {
            "$ref": "#/components/schemas/IssuerSchema"
          },
          "components": {
            "$ref": "#/components/schemas/UserComponentsSchema"
          },
          "title": {
            "title": "Title",
            "type": "string"
          },
          "body": {
            "title": "Body",
            "type": "string"
          },
          "created_at": {
            "title": "Created At",
            "type": "string",
            "format": "date-time"
          }
        },
        "description": "Описывает схему документа в MongoDB.\nВсе вложенные в схему документы должны наследоваться от этого класса."
      },
      "UserComponentsSchema": {
        "title": "UserComponentsSchema",
        "required": [
          "INN",
          "CN",
          "GN",
          "SN"
        ],
        "type": "object",
        "properties": {
          "SNILS": {
            "title": "Snils",
            "type": "string"
          },
          "OGRN": {
            "title": "Ogrn",
            "type": "string"
          },
          "INN": {
            "title": "Inn",
            "type": "string"
          },
          "emailAddress": {
            "title": "Emailaddress",
            "type": "string"
          },
          "C": {
            "title": "C",
            "type": "string"
          },
          "ST": {
            "title": "St",
            "type": "string"
          },
          "L": {
            "title": "L",
            "type": "string"
          },
          "O": {
            "title": "O",
            "type": "string"
          },
          "CN": {
            "title": "Cn",
            "type": "string"
          },
          "street": {
            "title": "Street",
            "type": "string"
          },
          "unstructuredName": {
            "title": "Unstructuredname",
            "type": "string"
          },
          "title": {
            "title": "Title",
            "type": "string"
          },
          "GN": {
            "title": "Gn",
            "type": "string"
          },
          "SN": {
            "title": "Sn",
            "type": "string"
          }
        },
        "description": "Описывает схему документа в MongoDB.\nВсе вложенные в схему документы должны наследоваться от этого класса."
      },
      "UserSchema": {
        "title": "UserSchema",
        "required": [
          "inn"
        ],
        "type": "object",
        "properties": {
          "inn": {
            "title": "Inn",
            "type": "string"
          },
          "first_name": {
            "title": "First Name",
            "type": "string"
          },
          "last_name": {
            "title": "Last Name",
            "type": "string"
          },
          "patronymic": {
            "title": "Patronymic",
            "type": "string"
          },
          "full_name": {
            "title": "Full Name",
            "type": "string"
          },
          "kpp": {
            "title": "Kpp",
            "type": "string"
          },
          "ati_id": {
            "title": "Ati Id",
            "type": "string",
            "description": "Алиас фирмы участника"
          },
          "default": {
            "title": "Default",
            "type": "boolean",
            "default": false
          },
          "is_roaming_user": {
            "title": "Is Roaming User",
            "type": "boolean",
            "default": false
          },
          "id": {
            "title": "Id",
            "type": "string"
          },
          "roaming_operator_id": {
            "title": "Roaming Operator Id",
            "type": "string"
          },
          "created_at": {
            "title": "Created At",
            "type": "string",
            "format": "date-time"
          },
          "certificates": {
            "title": "Certificates",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/UserCertificateSchema"
            }
          },
          "signatory_credentials": {
            "title": "Signatory Credentials",
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/SignatoryCredentialSchema"
            }
          }
        },
        "description": "Описывает схему документа в MongoDB.\nВсе вложенные в схему документы должны наследоваться от этого класса."
      },
      "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"
      },
      "DocflowIdResponseSchema": {
        "title": "DocflowIdResponseSchema",
        "required": [
          "id"
        ],
        "type": "object",
        "properties": {
          "id": {
            "title": "Id",
            "type": "string"
          }
        },
        "description": "Возвращает id документооборота"
      }
    },
    "securitySchemes": {
      "BearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT",
        "description": "Authorization: Bearer {authorizationToken}"
      }
    }
  }
}