{
  "openapi": "3.0.0",
  "info": {
    "title": "Imoview API",
    "description": "Todas as requisições deverão ter a chave de acesso enviado pela <strong>UNIVERSAL SOFTWARE</strong> no cabeçalho da requisição com o nome <strong>'chave'</strong>.<br>Todas as requisições que começam com App_ deverão ter o código de acesso (enviado na autenticação /Usuario/App_ValidarAcesso) no cabeçalho da requisição com o nome <strong>'codigoacesso'</strong>.<br><br>Caso tenha alguma dúvida em relação a um endpoint específico, favor entrar em contato com o suporte através do e-mail <strong><a href='mailto:suporte@unsoft.com.br'>suporte@unsoft.com.br</a></strong> ou pelo telefone (31) 3064-6600.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://api.imoview.com.br/",
      "description": "Produção"
    },
    {
      "url": "http://localhost:1026/",
      "description": "Local (IIS Express - porta do projeto universal.novoIMOVIEW.api)"
    }
  ],
  "paths": {
    "/Usuario/RetornarTipo1": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna o tipo do cliente pelo CPF/CNPJ",
        "description": "Retorno JSON do tipo do cliente (locador, locatário, proprietário, comprador e fiador) na área do cliente do imoview ADM",
        "operationId": "UsuarioTipo1",
        "parameters": [
          {
            "name": "cpfOuCnpj",
            "in": "query",
            "description": "Cpf ou Cnpj do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 10
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "Gabriel"
                    },
                    "cpfoucnpj": {
                      "type": "string",
                      "format": "string",
                      "example": "123.456.789.00"
                    },
                    "telefones": {
                      "type": "string",
                      "format": "string",
                      "example": "(31) 9999-9999"
                    },
                    "email": {
                      "type": "string",
                      "format": "string",
                      "example": "gabriel.henrique@unsoft.com.br"
                    },
                    "endereco": {
                      "type": "string",
                      "format": "string",
                      "example": "Rua X"
                    },
                    "locatario": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "comprador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "locador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "vendedor": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "fiador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "parceiro": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "quantidadeimoveislocador": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 2
                    },
                    "quantidadeimoveisvendedor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 0
                    },
                    "quantidadecontratoslocatario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 0
                    },
                    "quantidadeboletosativoslocatario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 2
                    },
                    "senhacadastrada": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "emailcadastrado": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "temvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "temesteira": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "naoexigircpf": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "anosdisponiveis": {
                      "type": "array",
                      "items": {
                        "type": "integer",
                        "format": "int32"
                      },
                      "format": "array",
                      "example": [ 2021 ]
                    },
                    "diasminimoavisodesocupacao": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "temcashgo": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "naoexibiravisodesocupacao": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "whatsappbotiniciarConversa": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "apphabililartickets": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    }

                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/RetornarTipo2": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna o tipo do cliente pelo codigo do cliente",
        "description": "Retorno JSON do tipo do cliente (locador, locatário, proprietário, comprador e fiador) na área do cliente do imoview ADM",
        "operationId": "UsuarioTipo2",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Codigo do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 10
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "Gabriel"
                    },
                    "cpfoucnpj": {
                      "type": "string",
                      "format": "string",
                      "example": "123.456.789.00"
                    },
                    "telefones": {
                      "type": "string",
                      "format": "string",
                      "example": "(31) 9999-9999"
                    },
                    "email": {
                      "type": "string",
                      "format": "string",
                      "example": "gabriel.henrique@unsoft.com.br"
                    },
                    "endereco": {
                      "type": "string",
                      "format": "string",
                      "example": "Rua X"
                    },
                    "locatario": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "comprador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "locador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "vendedor": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "fiador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "quantidadeimoveislocador": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 2
                    },
                    "quantidadeimoveisvendedor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 0
                    },
                    "quantidadecontratoslocatario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 0
                    },
                    "quantidadeboletosativoslocatario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 2
                    },
                    "senhacadastrada": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "emailcadastrado": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "temvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "temesteira": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "naoexigircpf": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "anosdisponiveis": {
                      "type": "array",
                      "items": {
                        "type": "integer",
                        "format": "int32"
                      },
                      "format": "array",
                      "example": [ 2021 ]
                    },
                    "diasminimoavisodesocupacao": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "temcashgo": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "naoexibiravisodesocupacao": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "whatsappbotiniciarConversa": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "apphabililartickets": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/RetornarTipo3": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna o tipo do cliente em lista",
        "description": "Retorno JSON do tipo do cliente em lista (locador, locatário, proprietário, comprador e fiador) na área do cliente do imoview ADM",
        "operationId": "UsuarioTipo3",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Codigo do cliente, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int32"
            }
          },
          {
            "name": "dataHoraInicialUltimaAlteracao",
            "in": "query",
            "description": "Data/hora inicial da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraFinalUltimaAlteracao",
            "in": "query",
            "description": "Data/hora final da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": 10
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "Gabriel"
                          },
                          "cpfoucnpj": {
                            "type": "string",
                            "format": "string",
                            "example": "123.456.789.00"
                          },
                          "telefones": {
                            "type": "string",
                            "format": "string",
                            "example": "(31) 9999-9999"
                          },
                          "email": {
                            "type": "string",
                            "format": "string",
                            "example": "gabriel.henrique@unsoft.com.br"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "Rua X"
                          },
                          "locatario": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "comprador": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": false
                          },
                          "locador": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": false
                          },
                          "vendedor": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "fiador": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "parceiro": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "quantidadeimoveislocador": {
                            "type": "integer",
                            "format": "Int64",
                            "example": 2
                          },
                          "quantidadeimoveisvendedor": {
                            "type": "integer",
                            "format": "Int64",
                            "example": 0
                          },
                          "quantidadecontratoslocatario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": 0
                          },
                          "quantidadeboletosativoslocatario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": 2
                          },
                          "senhacadastrada": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "emailcadastrado": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "temvistoria": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "temesteira": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "naoexigircpf": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "anosdisponiveis": {
                            "type": "array",
                            "items": {
                              "type": "integer",
                              "format": "int32"
                            },
                            "format": "array",
                            "example": [ 2021 ]
                          },
                          "diasminimoavisodesocupacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "temcashgo": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          },
                          "naoexibiravisodesocupacao": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": false
                          },
                          "whatsappbotiniciarConversa": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "datainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "apphabililartickets": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": true
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },

    "/Usuario/ValidarAcesso": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Valida o acesso do usuário na API Imoview",
        "description": "Retorno JSON para validação de acesso do usuário na área do cliente do imoview ADM",
        "operationId": "ValidarAcesso",
        "parameters": [
          {
            "name": "cpfOuCnpj",
            "in": "query",
            "description": "CPF/CNPJ do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "senha",
            "in": "query",
            "description": "Senha do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 10
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "Gabriel"
                    },
                    "cpfoucnpj": {
                      "type": "string",
                      "format": "string",
                      "example": "123.456.789.00"
                    },
                    "telefones": {
                      "type": "string",
                      "format": "string",
                      "example": "(31) 9999-9999"
                    },
                    "email": {
                      "type": "string",
                      "format": "string",
                      "example": "gabriel.henrique@unsoft.com.br"
                    },
                    "endereco": {
                      "type": "string",
                      "format": "string",
                      "example": "Rua X"
                    },
                    "locatario": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "comprador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "locador": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "vendedor": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "quantidadeimoveislocador": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 2
                    },
                    "quantidadeimoveisvendedor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 0
                    },
                    "quantidadecontratoslocatario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 0
                    },
                    "quantidadeboletosativoslocatario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 2
                    },
                    "temvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "temesteira": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "naoexigircpf": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "anosdisponiveis": {
                      "type": "array",
                      "items": {
                        "type": "integer",
                        "format": "int32"
                      },
                      "format": "array",
                      "example": [ 2021 ]
                    },
                    "diasminimoavisodesocupacao": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "temcashgo": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    },
                    "naoexibiravisodesocupacao": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": false
                    },
                    "whatsappbotiniciarConversa": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "apphabililartickets": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": true
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Cliente não encontrado com os dados fornecidos"
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/EnviarCodigoAcesso": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Envia um e-mail com o código de acesso para alterar a senha do usuário na Área do Cliente",
        "description": "Retorno JSON para envio de e-mail com código de acesso para trocar senha do usuário na área do cliente do imoview ADM",
        "operationId": "EnviarCodigoAcesso",
        "parameters": [
          {
            "name": "cpfOuCnpj",
            "in": "query",
            "description": "CPF/CNPJ do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 10
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "Gabriel Henrique"
                    },
                    "cpfoucnpj": {
                      "type": "string",
                      "format": "string",
                      "example": "123.456.789-00"
                    },
                    "email": {
                      "type": "string",
                      "format": "string",
                      "example": "gabriel.henrique@unsoft.com.br"
                    },
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "Código enviado para gabriel.henrique@unsoft.com.br"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/ValidarCodigoAcesso": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Valida o Codigo de Acesso para alterar a senha do usuário na Área do Cliente",
        "description": "Retorno JSON para validar código de acesso para trocar senha do usuário na área do cliente do imoview ADM",
        "operationId": "ValidarCodigoAcesso",
        "parameters": [
          {
            "name": "cpfOuCnpj",
            "in": "query",
            "description": "CPF/CNPJ do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoAcesso",
            "in": "query",
            "description": "Código enviado por e-mail",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": 10
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "Gabriel Henrique"
                    },
                    "cpfoucnpj": {
                      "type": "string",
                      "format": "string",
                      "example": "123.456.789-00"
                    },
                    "email": {
                      "type": "string",
                      "format": "string",
                      "example": "gabriel.henrique@unsoft.com.br"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/AlterarSenha": {
      "post": {
        "tags": [
          "Usuario"
        ],
        "summary": "Inclui/altera a senha do usário na Área do Cliente",
        "description": "Retorno JSON para incluir/alterar senha do usuário na área do cliente do imoview ADM",
        "operationId": "UsuarioAlterarSenha",
        "parameters": [
          {
            "name": "cpfOuCnpj",
            "in": "query",
            "description": "CPF/CNPJ do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "senhaAtual",
            "in": "query",
            "description": "Senha atual ou código de acesso enviado por e-mail",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "novaSenha",
            "in": "query",
            "description": "Nova senha",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cpfoucnpj": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/App_ValidarAcesso": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna o codigoacesso para utilizar nas requisições App_",
        "description": "Retorno JSON para validar acesso ao imoview CRM",
        "operationId": "App_ValidarAcesso",
        "parameters": [
          {
            "name": "email",
            "in": "query",
            "description": "Email do Usuário",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "senha",
            "in": "query",
            "description": "senha do Usuário criptografada em MD5",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigousuario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nomeusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cpfusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "perfilusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cargousuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fotousuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "podeverlistaimovel": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirimovel": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverlistaatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluiratendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirproposta": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirnegociacaoproposta": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podealterarcorretoratendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podealterarmqltendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podetransferiratendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },

                    "podeverfilaatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverfilamqlatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverfilacaptacaoatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeentrarfilaatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeentrarfilamqlatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeentrarfilacaptacaoatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },

                    "podeverlistacliente": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverdetalhescliente": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverlistavistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverdetalhesvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeveraluguel": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podevervenda": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "equipesaluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigounidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "equipes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoequipe": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "nomeequipe": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "equipesVenda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigounidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "equipes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoequipe": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "nomeequipe": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "codigoacesso": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "temadm": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temY": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temcaptacao": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temesteira": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "naoexigircpf": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverwhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeatribuirpramimwhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podetransferirconversaswhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeencerrarconversasquenaosaominhaswhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "whatsappbotiniciarConversa": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "temfotos60": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/App_RetornarDadosAcesso": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna os dados de acesso do usuario ao Imoview CRM",
        "description": "Retorno JSON com os dados, permissoes, modulos e customizacoes do usuario. Mesmo conteudo do App_ValidarAcesso, sem o campo codigoacesso.",
        "operationId": "App_RetornarDadosAcesso",
        "parameters": [
          {
            "name": "codigo",
            "in": "query",
            "description": "Codigo do usuario",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigousuario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nomeusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cpfusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "perfilusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cargousuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fotousuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "podeverlistaimovel": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirimovel": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverlistaatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluiratendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirproposta": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirnegociacaoproposta": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podealterarcorretoratendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podealterarmqltendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podetransferiratendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },

                    "podeverfilaatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverfilamqlatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverfilacaptacaoatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeentrarfilaatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeentrarfilamqlatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeentrarfilacaptacaoatendimento": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },

                    "podeverlistacliente": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverdetalhescliente": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverlistavistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverdetalhesvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeincluirvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeveraluguel": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podevervenda": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "equipesaluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigounidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "equipes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoequipe": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "nomeequipe": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "equipesVenda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigounidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "equipes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoequipe": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "nomeequipe": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "temadm": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temY": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temcaptacao": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temvistoria": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "temesteira": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "naoexigircpf": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeverwhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeatribuirpramimwhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podetransferirconversaswhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "podeencerrarconversasquenaosaominhaswhatsappbot": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "whatsappbotiniciarConversa": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "temfotos60": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Usuario/App_Logoff": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Realiza logoff no APP Imoview CRM",
        "description": "Retorno JSON para realizar logoff no APP imoview CRM",
        "operationId": "App_Logoff",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigousuario": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "nomeusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "logoffrealizado": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Usuario/App_VerificarCodigoAcesso": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Verifica o Codigo de Acesso ao Imoview CRM",
        "description": "Retorno JSON para verificar código de acesso ao imoview CRM",
        "operationId": "App_VerificarCodigoAcesso",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAcesso",
            "in": "query",
            "description": "Código de acesso gerado na validação (App_ValidarAcesso)",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "validado": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Usuario/App_RetornarCorretores": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna a lista de corretores na Área do Cliente/APP",
        "description": "Retorno JSON da lista de corretores na área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarCorretores",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Informe 1-Aluguel ou 2-Venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Unidade enviada em App_ValidarAcesso, ou 0 para assumir unidades permitidas para o usuário autenticado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoEquipe",
            "in": "query",
            "description": "Equipe enviada em App_ValidarAcesso, ou 0 para assumir todas equipes permitidas para o usuário autenticado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Usuario/App_RetornarMQLs": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna a lista de MQLs na Área do Cliente/APP",
        "description": "Retorno JSON da lista de MQLs na área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarMQLs",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Informe 1-Aluguel ou 2-Venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Unidade enviada em App_ValidarAcesso, ou 0 para assumir unidades permitidas para o usuário autenticado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Usuario/App_RetornarUsuarios": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna os usuários ativos para a Área do Cliente/APP",
        "description": "Retorno JSON da lista de usuários ativos para área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarUsuarios",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Informe 1-Aluguel ou 2-Venda",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Unidade enviada em App_ValidarAcesso, ou 0 para assumir unidades permitidas para o usuário autenticado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "foto": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "email": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "empresarazao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "empresafantasia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefoneempresa": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "emailempresa": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "enderecoempresa": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "logoempresa": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cargo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "perfil": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "setor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "creci": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ultimoacesso": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Usuario/App_RetornarDadosUsuario": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna os dados dos usuários ativos para a Área do Cliente/APP",
        "description": "Retorno JSON de dados do usuários ativos para área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarDadosUsuario",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "codigoauxiliar": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "foto": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "email": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "telefone": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "endereco": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "empresarazao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "empresafantasia": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "telefoneempresa": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "emailempresa": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "enderecoempresa": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "logoempresa": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cargo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "perfil": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "setor": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "creci": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "ultimoacesso": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Usuario/App_RetornarFilas": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna filas de corretores para a Área do Cliente/APP",
        "description": "Retorno JSON de filas de corretores para área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarFilas",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código unidade",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel, 2 para venda, 0 para todos",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoFila",
            "in": "query",
            "description": "Código fila customizada, 0 para padrão",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {

                    "fila_venda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "fila_aluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "fila_em_atendimento_venda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "fila_em_atendimento_aluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "fila_indisponivel_venda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "fila_indisponivel_aluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },

    "/Usuario/App_RetornarFilasMQL": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna filas de MQLs para a Área do Cliente/APP",
        "description": "Retorno JSON de filas de MQLs para área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarFilasMQL",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código unidade",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel, 2 para venda, 0 para todos",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoFila",
            "in": "query",
            "description": "Código fila customizada, 0 para padrão",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {

                    "fila_venda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "fila_aluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "fila_indisponivel_venda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "fila_indisponivel_aluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },

    "/Usuario/App_RetornarFilasCaptacao": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna filas de captadores para a Área do Cliente/APP",
        "description": "Retorno JSON de filas de captadores para área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarFilasCaptacao",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código unidade",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel, 2 para venda, 0 para todos",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoFila",
            "in": "query",
            "description": "Código fila customizada, 0 para padrão",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {

                    "fila_venda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "fila_aluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "fila_indisponivel_venda": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "fila_indisponivel_aluguel": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },

    "/Usuario/App_AlterarSituacaoFila": {
      "post": {
        "tags": [
          "Usuario"
        ],
        "summary": "Altera a situação fila de corretores do usuário autenticado a Área do Cliente/APP",
        "description": "Retorno JSON da alteração de situação da fila de corretores para área do cliente/APP do imoview ADM",
        "operationId": "App_AlterarSituacaoFila",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código unidade",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel e 2 para venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situação",
            "in": "query",
            "description": "Enviar 0 para indisponível, 1 para disponível e 2 para em antendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoFila",
            "in": "query",
            "description": "Enviar o código da fila customizada, 0 para fila padrão, lista /App_RetornarFilasCustomizadas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },

    "/Usuario/App_AlterarSituacaoFilaMQL": {
      "post": {
        "tags": [
          "Usuario"
        ],
        "summary": "Altera a situação fila de MQLs do usuário autenticado a Área do Cliente/APP",
        "description": "Retorno JSON da alteração de situação da fila de MQLs para área do cliente/APP do imoview ADM",
        "operationId": "App_AlterarSituacaoFilaMQL",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código unidade",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel e 2 para venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situação",
            "in": "query",
            "description": "Enviar 0 para indisponível, 1 para disponível e 2 para em antendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoFila",
            "in": "query",
            "description": "Enviar o código da fila customizada, 0 para fila padrão, lista /App_RetornarFilasCustomizadas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },

    "/Usuario/App_AlterarSituacaoFilaCaptacao": {
      "post": {
        "tags": [
          "Usuario"
        ],
        "summary": "Altera a situação fila de captadores do usuário autenticado a Área do Cliente/APP",
        "description": "Retorno JSON da alteração de situação da fila de captadores para área do cliente/APP do imoview ADM",
        "operationId": "App_AlterarSituacaoFilaCaptacao",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código unidade",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel e 2 para venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situação",
            "in": "query",
            "description": "Enviar 0 para indisponível, 1 para disponível e 2 para em antendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoFila",
            "in": "query",
            "description": "Enviar o código da fila customizada, 0 para fila padrão, lista /App_RetornarFilasCustomizadas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },


    "/Usuario/App_RetornarFilasCustomizadas": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna filas customizadas para a Área do Cliente/APP",
        "description": "Retorno JSON de filas customizadas de corretores, MQLs e captadores para área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarFilasCustomizadas",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {

                    "corretores": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "lista": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoUnidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomeUnidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "mqls": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "lista": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoUnidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomeUnidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "captadores": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "lista": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoUnidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomeUnidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          }
                        }
                      }
                    }


                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },


    "/Usuario/App_RetornarDashboard": {
      "get": {
        "tags": [
          "Usuario"
        ],
        "summary": "Retorna dashboard do usuário autenticado para a Área do Cliente/APP",
        "description": "Retorno JSON de dashboard do usuário autenticado para Área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarDashboard",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {

                    "quantidade_atendimentos_em_andamento_venda": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atendimentos_em_andamento_aluguel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atendimentos_em_andamento_com_proposta_venda": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atendimentos_em_andamento_com_proposta_aluguel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atendimentos_em_andamento_com_atividades_vencidas_venda": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atendimentos_em_andamento_com_atividades_vencidas_aluguel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_negocios_mes_venda": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_negocios_mes_aluguel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atividades_vencidas": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atividades_dia": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_atividades_proximos_dias": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_vistoria_pendentes": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_vistoria_em_adamento": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_novos_imoveis_7_dias_venda": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidade_novos_imoveis_7_dias_aluguel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },


    "/Locatario/RetornarImoveis": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de imóveis de aluguel do locatário na Área do Cliente",
        "description": "Retorno JSON da lista de imóveis finalidade aluguel do locatário na área do cliente do imoview ADM",
        "operationId": "RetornarImoveis",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ImovelRetornar"
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/ContratoAluguel/RetornarContratos": {
      "get": {
        "tags": [
          "Contrato aluguel"
        ],
        "summary": "Retorna a lista de contratos de aluguel",
        "description": "Retorno JSON da lista de contratos de aluguel do convênio, com filtros por locatário, locador, imóvel, situação e períodos (início do contrato, próximo reajuste e última alteração). O período de última alteração permite carga incremental.",
        "operationId": "ContratoAluguelRetornarContratos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar a quantidade de registros já retornados (0 para a primeira chamada)",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 50",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código da unidade/filial, enviar 0 para todas as unidades do convênio",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoLocatario",
            "in": "query",
            "description": "Código do locatário, enviar 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoLocador",
            "in": "query",
            "description": "Código do locador/proprietário, enviar 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel, enviar 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situacao",
            "in": "query",
            "description": "Informe 1-Ativo, 2-Moderação, 3-Rescindido, 4-Cancelado ou 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataInicial",
            "in": "query",
            "description": "Data inicial do período de início do contrato no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataFinal",
            "in": "query",
            "description": "Data final do período de início do contrato no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataInicialProximoReajuste",
            "in": "query",
            "description": "Data inicial do período do próximo reajuste no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataFinalProximoReajuste",
            "in": "query",
            "description": "Data final do período do próximo reajuste no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraInicialUltimaAlteracao",
            "in": "query",
            "description": "Data/hora inicial da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraFinalUltimaAlteracao",
            "in": "query",
            "description": "Data/hora final da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "ordenacao",
            "in": "query",
            "description": "Informe 0-Data/hora alteração, 1-Código, 2-Situação, 3-Status, 9-Valor, 10-Locatário, 11-Data início, 12-Data fim, 13-Data próximo reajuste, 15-Imóvel, 17-Data rescisão. Envie o valor negativo para ordem decrescente. Não informar = por código",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "unidadecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "locatarionome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariotelefone1": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariotelefone2": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatarioemail": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariocpf": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatarioformacorrespondencia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "status": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivostatus": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoraluguel": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "taxaadministracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipotaxaadministracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "taxaintermediacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipotaxaintermediacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "garantia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "padrao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataativacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datainicio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datafim": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoreajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximorepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diarepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataavisodesocupacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataprevisaorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datarescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complementomotivorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diainicioperiodo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "diavencimentoaluguel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "formacobranca": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formarecebimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "comofazerrepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimentorepasse": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ramoatividade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "indicereajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "garantido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipogarantido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantosmesesgarantido": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "responsavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "advogadoresponsavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },

                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "cep": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "locadores": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "percentual": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      },
                                      "formarepasse": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "responsavelfiscalcodigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "responsavelfiscalnome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "responsavelfiscalcpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "seguroincendio": {
                            "type": "object",
                            "properties": {
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorvenal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          },

                          "garantialocaticia": {
                            "type": "object",
                            "properties": {
                              "forma": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "fiador": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarContratos": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de contratos de aluguel do locatário na Área do Cliente",
        "description": "Retorno JSON da lista de contratos aluguel do locatário na área do cliente do imoview ADM",
        "operationId": "RetornarContratos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "endereco",
            "in": "query",
            "description": "Parte do endereço do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoContrato ",
            "in": "query",
            "description": "Código do contrato, enviar 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "mostrarRescindidos",
            "in": "query",
            "description": "Enviar true para considerar os contratos rescindidos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "unidadecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "locatarionome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariotelefone1": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariotelefone2": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatarioemail": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariocpf": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatarioformacorrespondencia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "status": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivostatus": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoraluguel": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "taxaadministracao": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "tipotaxaadministracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "taxaintermediacao": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "tipotaxaintermediacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "padrao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataativacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datainicio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datafim": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoreajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximorepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diarepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataavisodesocupacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataprevisaorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datarescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complementomotivo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diainicioperiodo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "diavencimentoaluguel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "formacobranca": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formarecebimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "comofazerrepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimentorepasse": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ramoatividade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "indicereajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "garantido": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "tipogarantido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantosmesesgarantido": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "responsavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "advogadoresponsavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },

                          "contratosassinado": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "titulo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "vistoriasassinado": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "titulo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "locadores": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "formarepasse": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "percentual": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "seguroincendio": {
                            "type": "object",
                            "properties": {
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorvenal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          },

                          "garantialocaticia": {
                            "type": "object",
                            "properties": {
                              "forma": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "fiador": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/App_RetornarContratos": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna uma lista de contratos de aluguel do locatário",
        "description": "Retorno JSON da lista de contratos aluguel do locatário na área do cliente do imoview ADM",
        "operationId": "App_RetornarContratos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "endereco",
            "in": "query",
            "description": "Parte do endereço do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraInicialUltimaAlteracao",
            "in": "query",
            "description": "Data/hora inicial da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraFinalUltimaAlteracao",
            "in": "query",
            "description": "Data/hora final da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "mostrarRescindidos",
            "in": "query",
            "description": "Enviar true para considerar os contratos rescindidos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "unidadecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "locatarionome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariotelefone1": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariotelefone2": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatarioemail": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatariocpf": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatarioformacorrespondencia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "status": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivostatus": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoraluguel": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "taxaadministracao": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "tipotaxaadministracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "taxaintermediacao": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "tipotaxaintermediacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "padrao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataativacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datainicio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datafim": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoreajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximorepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diarepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataavisodesocupacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataprevisaorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datarescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complementomotivo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diainicioperiodo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "diavencimentoaluguel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "formacobranca": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formarecebimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "comofazerrepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimentorepasse": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ramoatividade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "indicereajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "garantido": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "tipogarantido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantosmesesgarantido": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "responsavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "advogadoresponsavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },

                          "contratosassinado": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "titulo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "vistoriasassinado": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "titulo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "locadores": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "formarepasse": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "percentual": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "seguroincendio": {
                            "type": "object",
                            "properties": {
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorvenal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          },

                          "garantialocaticia": {
                            "type": "object",
                            "properties": {
                              "forma": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "fiador": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Locatario/App_RetornarNegocios": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de negócios de aluguel do comprador na Área do Cliente/APP",
        "description": "Retorno JSON da lista de negócios de aluguel do locatário na área do cliente/APP do imoview ADM",
        "operationId": "App_RetornarNegocios",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valornegocio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "data": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "proprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Locatario/RetornarBoletosAtivos": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de boletos ativos de aluguel do locatário na Área do Cliente",
        "description": "Retorno JSON da lista de boletos ativos finalidade aluguel do locatário na área do cliente do imoview ADM",
        "operationId": "RetornarBoletosAtivos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataemissao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "vencido": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "linhadigitavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlacessoexterno": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "boletodigital": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "movimentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "historico": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datavencimento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datapagamento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "detalhes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "planoconta": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "codigocontabil": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "historico": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarBoletosQuitados": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de boletos quitados de aluguel do locatário na Área do Cliente",
        "description": "Retorno JSON da lista de boletos quitados finalidade aluguel do locatário na área do cliente do imoview ADM",
        "operationId": "RetornarBoletosQuitados",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataemissao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "valorpago": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "movimentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "historico": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datavencimento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datapagamento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "detalhes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "planoconta": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "codigocontabil": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "historico": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/ProrrogarBoletoVencido": {
      "post": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de boletos vencido de aluguel do locatário na Área do Cliente",
        "description": "Retorno JSON para prorrogar boleto vencido finalidade aluguel do locatário na área do cliente do imoview ADM",
        "operationId": "ProrrogarBoletoVencido",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoBoleto",
            "in": "query",
            "description": "Código do boleto",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "novaDataVencimento",
            "in": "query",
            "description": "Nova data de vencimento, formato (dd/mm/aaaa)",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Prorrogação realizada com sucesso.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "dataemissao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datavencimento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "valor": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    },
                    "linhadigitavel": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "urlacessoexterno": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "movimentos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "historico": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datapagamento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "detalhes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "planoconta": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigocontabil": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "historico": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/App_BaixarBoleto": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna o link para baixar PDF do boleto na APP/Área do Cliente",
        "description": "Retorno JSON para baixar pdf boleto no APP/Área do cliente do imoview ADM",
        "operationId": "App_BaixarBoleto",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoBoleto",
            "in": "query",
            "description": "Código do boleto",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "urldownload": {
                      "type": "string",
                      "format": "string",
                      "example": ""
                    },
                    "urlcurtadownload": {
                      "type": "string",
                      "format": "string",
                      "example": ""
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Locatario/RetornarTiposTicketsDisponiveis": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de tipos de tickets disponíveis do Imoview ADM para inclusão de tickets",
        "description": "Retorno JSON da lista de tipos de tickets disponíveis do imoview ADM para inclusão de ticket",
        "operationId": "RetornarTiposTicketsDisponiveis",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/IncluirTicket": {
      "post": {
        "tags": [
          "Locatário"
        ],
        "summary": "Inclui tickets de serviço no Imoview ADM",
        "description": "Retorno JSON para incluir ticket de serviço no imoview ADM - Tipos de tickets podem ser obtidos através da requisição RetornarTiposTicketsDisponiveis",
        "operationId": "IncluirTicket",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/IncluirTicket"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelresumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "origem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "prioridade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraabertura": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/IncluirInteracaoTicket": {
      "post": {
        "tags": [
          "Locatário"
        ],
        "summary": "Inclui interação no ticket de serviço no Imoview ADM",
        "description": "Retorno JSON para incluir interação no ticket de serviço no imoview ADM",
        "operationId": "LocatarioIncluirInteracaoTicket",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/IncluirInteracaoTicket"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelresumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "origem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "prioridade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraabertura": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarTicketsAtivos": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de tickets ativos do Imoview ADM",
        "description": "Retorno JSON da lista de tickets ativos do imoview ADM",
        "operationId": "LocatarioRetornarTicketsAtivos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "imovelcodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "imovelresumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "origem": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "corsituacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "prioridade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraabertura": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimainteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "solicitante": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "interacoes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "usuario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahora": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "visibilidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anexos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "orcamentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "profissional": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahora": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "visibilidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anexos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarTicketsResolvidos": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de tickets resolvidos no Imoview ADM",
        "description": "Retorno JSON da lista de tickets concluídos do imoview ADM",
        "operationId": "LocatarioRetornarTicketsResolvidos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "imovelcodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "imovelresumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "origem": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "corsituacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "prioridade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraabertura": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimainteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "solicitante": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "interacoes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "usuario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahora": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "visibilidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anexos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "orcamentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "profissional": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahora": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "visibilidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anexos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarDetalhesTicket": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de detalhes do ticket de serviço no Imoview ADM",
        "description": "Retorno JSON de detalhes de ticket do imoview ADM",
        "operationId": "LocatarioRetornarDetalhesTicket",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoTicket",
            "in": "query",
            "description": "Código do ticket",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelresumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "origem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "corsituacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "prioridade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraabertura": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "solicitante": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "orcamentos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "profissional": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarExtrato": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de extratos do locatário na Área do Cliente",
        "description": "Retorno JSON da lista de extrato do locatário na área do cliente do imoview ADM",
        "operationId": "LocatarioRetornarExtrato",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoContrato",
            "in": "query",
            "description": "Código do contrato aluguel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "ano",
            "in": "query",
            "description": "Ano referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "mes",
            "in": "query",
            "description": "Mês referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "locador": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imovelcodigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "contrato": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "contratocodigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "locatário": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlacessoexterno": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "movimentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "datavencimento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datapagamento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "historico": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "detalhes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "planoconta": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "historico": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                },
                                "formasrepasse": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "subtotal": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          }
                        }
                      }
                    },
                    "urlacessoexternotodosimoveis": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "total": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarVistorias": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de vistorias do cliente",
        "description": "Retorno JSON vistorias do cliente",
        "operationId": "LocatarioRetornarVistorias",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "pagina",
            "in": "query",
            "description": "Padrão página 1",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacaocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "datetime",
                            "example": "date-time"
                          },
                          "datahorafimconsideracoes": {
                            "type": "string",
                            "format": "datetime",
                            "example": "date-time"
                          },
                          "imovelresumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "contratoresumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "vistoriador": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ambientes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "consideracoesvistoriador": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "consideracoeslocatario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "consideracoesproprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "consideracoes": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "itens": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "fotos": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "descricao": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "url": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "medidores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "medidore": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anotacoes": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "chaves": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "quantidade": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarAmbienteVistoria": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de ambientes de vistoria do cliente",
        "description": "Retorno JSON ambiente vistoria do cliente",
        "operationId": "LocatarioRetornarAmbienteVistoria",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAmbiente",
            "in": "query",
            "description": "Código do ambiente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "consideracoesvistoriador": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "consideracoeslocatario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "consideracoesproprietarios": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "consideracoes": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "fotos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "url": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarItemAmbienteVistoria": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de items dos ambientes de vistoria do cliente",
        "description": "Retorno JSON item ambiente vistoria do cliente",
        "operationId": "LocatarioRetornarItemAmbienteVistoria",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoItem",
            "in": "query",
            "description": "Código do ambiente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "descricao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fotos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "url": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/AlterarConsideracoesVistoria": {
      "post": {
        "tags": [
          "Locatário"
        ],
        "summary": "Envia as considerações feitas na vistoria do cliente",
        "description": "Enviar considerações da vistoria pelo cliente",
        "operationId": "LocatarioAlterarConsideracoesVistoria",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigocliente": {
                    "type": "integer",
                    "format": "Int64",
                    "example": 2
                  },
                  "codigovistoria": {
                    "type": "integer",
                    "format": "Int64",
                    "example": 2
                  },
                  "ambientes": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "codigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": 1
                        },
                        "consideracoes": {
                          "type": "string",
                          "format": "string",
                          "example": "Teste"
                        },
                        "fotos": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "descricao": {
                                "type": "string",
                                "format": "string",
                                "example": "Teste"
                              },
                              "nomearquivo": {
                                "type": "string",
                                "format": "string",
                                "example": "Teste"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Imóveis",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "items": {
                    "type": "string",
                    "format": "uri",
                    "example": ""
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/SalvarAvisoDesocupacao": {
      "post": {
        "tags": [
          "Locatário"
        ],
        "summary": "Inclui, altera ou exclui aviso de desocupação no contrato do locatário",
        "description": "Incluir/alterar/excluir aviso de desocupação",
        "operationId": "LocatarioSalvarAvisoDesocupacao",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigocliente": {
                    "type": "integer",
                    "format": "Int64",
                    "example": 2
                  },
                  "codigocontratoaluguel": {
                    "type": "integer",
                    "format": "Int64",
                    "example": 2
                  },
                  "codigomotivo": {
                    "type": "integer",
                    "format": "Int64",
                    "example": 2
                  },
                  "complementomotivo": {
                    "type": "string",
                    "format": "string",
                    "example": "Complemento"
                  },
                  "datarescisao": {
                    "type": "string",
                    "format": "string",
                    "example": "(dd/mm/aaaa)"
                  },
                  "excluir": {
                    "type": "boolean",
                    "format": "boolean",
                    "example": false
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Imóveis",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": ""
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarMotivosRescisaoContratoAluguel": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna a lista de motivos de rescisão de contrato de aluguel",
        "description": "Lista de motivos de rescisão de contrato aluguel",
        "operationId": "LocatarioRetornarMotivosRescisaoContratoAluguel",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Imóveis",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": ""
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locatario/RetornarResumoRescisao": {
      "get": {
        "tags": [
          "Locatário"
        ],
        "summary": "Retorna o resumo da rescisão considerando a data informada",
        "description": "Retorno resumo da rescisão considerando a data informada",
        "operationId": "LocatarioRetornarResumoRescisao",
        "parameters": [
          {
            "name": "codigocontratoaluguel",
            "in": "query",
            "description": "Código do contrato aluguel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "datarescisao",
            "in": "query",
            "description": "Data que o contrato aluguel será rescindido, formato dd/mm/yyyy",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locatário",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "resumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "lancarmulta": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Fiador/App_RetornarContratos": {
      "get": {
        "tags": [
          "Fiador"
        ],
        "summary": "Retorna a lista de contratos de aluguel do fiador na Área do Cliente/APP Imoview ADM",
        "description": "Retorno JSON da lista de contratos aluguel do fiador na área do cliente/APP do imoview ADM",
        "operationId": "FiadorApp_RetornarContratos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Imóveis",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "status": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivostatus": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "garantia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formacobranca": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formarecebimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoraluguel": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "datainicio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datafim": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoreajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximorepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "locadores": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Fiador/App_RetornarNegocios": {
      "get": {
        "tags": [
          "Fiador"
        ],
        "summary": "Retorna a lista de negócios de aluguel do fiador na Área do Cliente/APP Imoview ADM",
        "description": "Retorno JSON da lista de negócios de aluguel do fiador na área do cliente/APP do imoview ADM",
        "operationId": "FiadorApp_RetornarNegocios",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Imóveis",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valornegocio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "data": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "proprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Locador/RetornarImoveis": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de imóveis de aluguel do locador na Área do Cliente do Imoview ADM",
        "description": "Retorno JSON da lista de imóveis finalidade aluguel do locador na área do cliente do imoview ADM",
        "operationId": "LocadorRetornarImoveis",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situacao",
            "in": "query",
            "description": "Informe 1 (vago/disponível), 2 (Alugado), 3 (Vendido), 4 (Em reforma), 5 (Em moderação), 6 (Desativado) ou 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipoimovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "fotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/RetornarContratos": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de contratos de aluguel do locador na Área do Cliente",
        "description": "Retorno JSON da lista de contratos aluguel do locador na área do cliente do imoview ADM",
        "operationId": "LocadorRetornarContratos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "endereco",
            "in": "query",
            "description": "Parte do endereço do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoContrato ",
            "in": "query",
            "description": "Código do contrato, enviar 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "status": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivostatus": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "garantia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formacobranca": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formarecebimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoraluguel": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "datainicio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datafim": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoreajuste": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximoaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataproximorepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diarepasse": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataavisodesocupacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataprevisaorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigomotivorescisao": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "motivorescisao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complementomotivo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },

                          "contratosassinado": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "titulo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "vistoriasassinado": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "titulo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "locadores": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "formarepasse": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "percentual": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "seguroincendio": {
                            "type": "object",
                            "properties": {
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          },

                          "garantialocaticia": {
                            "type": "object",
                            "properties": {
                              "forma": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "seguradora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "corretora": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datainicio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datafim": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroapolice": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/App_RetornarIndicadores": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna os indicadores do imóvel na Área do Cliente/APP no Imoview ADM",
        "description": "Retorno JSON de indicadores do imóvel no APP/Área do cliente do imoview ADM",
        "operationId": "LocadorApp_RetornarIndicadores",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigoimovel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "datainicio": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datafim": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "funil": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "quantidadepositivo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "parecerpositivo": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "quantidadenegativo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "parecernegativo": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "midias": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "tiposatendimento": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Locador/RetornarExtrato": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de extratos do locador na Área do Cliente",
        "description": "Retorno JSON da lista de extrato do locador na área do cliente do imoview ADM",
        "operationId": "LocadorRetornarExtrato",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoContrato",
            "in": "query",
            "description": "Código do contrato aluguel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "ano",
            "in": "query",
            "description": "Ano referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "mes",
            "in": "query",
            "description": "Mês referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "locador": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imovelcodigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "contrato": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "contratocodigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "locatário": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlacessoexterno": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "movimentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "datavencimento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datapagamento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "historico": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "detalhes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "planoconta": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "historico": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                },
                                "formasrepasse": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "subtotal": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          }
                        }
                      }
                    },
                    "urlacessoexternotodosimoveis": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "total": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/App_BaixarExtrato": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a url para baixar o extrato do cliente em PDF na Área do Cliente/APP",
        "description": "Retorno JSON para baixar pdf extrato no APP/Área do cliente do imoview ADM",
        "operationId": "LocadorApp_BaixarExtrato",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoContrato",
            "in": "query",
            "description": "Código do contrato aluguel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "ano",
            "in": "query",
            "description": "Ano referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "mes",
            "in": "query",
            "description": "Mês referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locatário",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "urldownload": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Locador/RetornarDemonstrativoIr": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de demonstrativo de imposto de renda do locador",
        "description": "Retorno JSON da lista de demonstrativo de imposto de renda do locador na área do cliente do imoview ADM",
        "operationId": "LocadorRetornarDemonstrativoIr",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "anoBase",
            "in": "query",
            "description": "Ano referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel",
            "required": true,
            "style": "form",
            "explode": false,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoContrato",
            "in": "query",
            "description": "Código do contrato",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "locador": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "contrato": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocontrato": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "codigoimovel": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "urlacessoexterno": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "movimentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "codigodetalhe": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "datapagamento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "historico": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "taxaadm": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "saldo": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                }
                              }
                            }
                          },
                          "totalaluguel": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "totalcomissao": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "totalirrf": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "saldototal": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/App_BaixarDemonstrativoIr": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a url para baixar o demonstrativo de imposto de renda em PDF na Área do Cliente/APP",
        "description": "Retorno JSON para baixar pdf demonstrativo IR no APP/Área do cliente do imoview ADM",
        "operationId": "LocadorApp_BaixarDemonstrativoIr",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "anoBase",
            "in": "query",
            "description": "Ano referência",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel",
            "required": true,
            "style": "form",
            "explode": false,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoContrato",
            "in": "query",
            "description": "Código do contrato",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "urldownload": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Locador/IncluirTicket": {
      "post": {
        "tags": [
          "Locador"
        ],
        "summary": "Inclui tickets de serviço no Imoview ADM",
        "description": "Retorno JSON para incluir ticket de serviço no imoview ADM - Tipos de tickets podem ser obtidos através da requisição RetornarTiposTicketsDisponiveis",
        "operationId": "LocadorIncluirTicket",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/IncluirTicket"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelresumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "origem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "prioridade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraabertura": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/IncluirInteracaoTicket": {
      "post": {
        "tags": [
          "Locador"
        ],
        "summary": "Inclui interação no ticket de serviço no Imoview ADM",
        "description": "Retorno JSON para incluir ticket de serviço no imoview ADM",
        "operationId": "LocadorIncluirInteracaoTicket",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/IncluirInteracaoTicket"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelresumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "origem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "prioridade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraabertura": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/RetornarTicketsAtivos": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de tickets ativos do Imoview ADM",
        "description": "Retorno JSON da lista de tickets ativos do imoview ADM",
        "operationId": "LocadorRetornarTicketsAtivos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelresumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "origem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "corsituacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "prioridade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraabertura": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "solicitante": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "orcamentos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "profissional": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/RetornarTicketsResolvidos": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de tickets resolvidos no Imoview ADM",
        "description": "Retorno JSON da lista de tickets concluídos do imoview ADM",
        "operationId": "LocadorRetornarTicketsResolvidos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "imovelresumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "origem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "prioridade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraabertura": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "solicitante": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "orcamentos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "profissional": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "visibilidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/RetornarVistorias": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de vistorias do cliente",
        "description": "Retorno JSON vistorias do cliente",
        "operationId": "LocadorRetornarVistorias",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "pagina",
            "in": "query",
            "description": "Padrão página 1.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacaocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "datetime",
                            "example": "date-time"
                          },
                          "datahorafimconsideracoes": {
                            "type": "string",
                            "format": "datetime",
                            "example": "date-time"
                          },
                          "imovelresumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "contratoresumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "locatario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "vistoriador": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ambientes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "consideracoesvistoriador": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "consideracoeslocatario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "consideracoesproprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "consideracoes": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "itens": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "fotos": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "descricao": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "url": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "medidores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "medidore": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "anotacoes": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "chaves": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "quantidade": {
                                  "type": "integer",
                                  "format": "int64",
                                  "example": "int"
                                },
                                "anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/RetornarAmbienteVistoria": {
      "get": {
        "tags": [
          "Locador"
        ],
        "summary": "Retorna a lista de ambientes de vistoria do cliente",
        "description": "Retorno JSON ambiente vistoria do cliente",
        "operationId": "LocadorRetornarAmbienteVistoria",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAmbiente",
            "in": "query",
            "description": "Código do ambiente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Locador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "consideracoesvistoriador": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "consideracoeslocatario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "consideracoesproprietarios": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "consideracoes": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "fotos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "url": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "items": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Locador/AlterarConsideracoesVistoria": {
      "post": {
        "tags": [
          "Locador"
        ],
        "summary": "Envia as considerações feitas na vistoria do cliente",
        "description": "Enviar considerações da vistoria pelo cliente",
        "operationId": "LocadorAlterarConsideracoesVistoria",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigocliente": {
                    "type": "integer",
                    "format": "Int64",
                    "example": "int"
                  },
                  "codigovistoria": {
                    "type": "integer",
                    "format": "Int64",
                    "example": "int"
                  },
                  "ambientes": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "codigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "consideracoes": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "fotos": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "descricao": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "nomearquivo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Comprador/RetornarNegocios": {
      "get": {
        "tags": [
          "Comprador"
        ],
        "summary": "Retorna a lista de negocios de venda do comprador na Área do Cliente do Imoveis ADM",
        "description": "Retorno JSON da lista de negócios de venda do comprador na área do cliente do imoview ADM",
        "operationId": "CompradorRetornarNegocios",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valornegocio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "dat": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "proprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Comprador/App_RetornarNegocios": {
      "get": {
        "tags": [
          "Comprador"
        ],
        "summary": "Retorna a lista dos negócios de venda do comprador na Área do Cliente/APP",
        "description": "Retorno JSON da lista de negócios de venda do comprador na área do cliente/APP do imoview ADM",
        "operationId": "CompradorApp_RetornarNegocios",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valornegocio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "dat": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "proprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Comprador/App_RetornarContratos": {
      "get": {
        "tags": [
          "Comprador"
        ],
        "summary": "Retorna a lista de contratos de venda do comprador na Área do Cliente/APP",
        "description": "Retorno JSON da lista de contratos de venda do comprador na área do cliente/APP do imoview ADM",
        "operationId": "CompradorApp_RetornarContratos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valornegocio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "dat": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "imoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "finalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "tipoimovel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "fotoprincipal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numeroquartos": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerovagas": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorcondominio": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "proprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "cpfcnpj": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vendedor/RetornarImoveis": {
      "get": {
        "tags": [
          "Vendedor"
        ],
        "summary": "Retorna a lista de imóveis de venda do proprietário na Área de Client do Imoveis ADM",
        "description": "Retorno JSON da lista de imóveis finalidade venda do proprietário na área do cliente do imoview ADM",
        "operationId": "VendedorRetornarImoveis",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situacao",
            "in": "query",
            "description": "Informe 1 (vago/disponível), 2 (Alugado), 3 (Vendido), 4 (Em reforma), 5 (Em moderação), 6 (Desativado) ou 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipoimovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "temindicadores": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Vendedor/App_RetornarIndicadores": {
      "get": {
        "tags": [
          "Vendedor"
        ],
        "summary": "Retorna os indicadores do imóvel na Área do Cliente/APP no Imoview ADM",
        "description": "Retorno JSON de indicadores do imóvel no APP/Área do cliente do imoview ADM",
        "operationId": "VendedorApp_RetornarIndicadores",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigoimovel": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "datainicio": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datafim": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "funil": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "quantidadepositivo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "parecerpositivo": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "quantidadenegativo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "parecernegativo": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "midias": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "tiposatendimento": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "quantidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Cliente/RetornarClientes": {
      "get": {
        "tags": [
          "Cliente"
        ],
        "summary": "Retorna a lista de clientes",
        "description": "Retorno JSON da lista de clientes do convênio (pessoas físicas e/ou jurídicas), com filtros por tipo de pessoa, tipo de relacionamento, período de inclusão e período de última alteração. O período de última alteração permite carga incremental.",
        "operationId": "ClienteRetornarClientes",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual (1 para a primeira)",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "tipoPessoa",
            "in": "query",
            "description": "Informe 1-Jurídica, 2-Física ou 0 para ambos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "tipoRelacionamento",
            "in": "query",
            "description": "Códigos dos tipos de relacionamento separados por vírgula: 1-Lead, 2-Locador, 3-Locatário, 4-Fiador, 5-Síndico, 6-Proprietário, 7-Comprador, 8-Administradora condomínio, 9-Porteiro, 10-Zelador, 11-Parceiro, 12-Prestador serviço, 13-Fornecedor. Não informar para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataInclusaoInicio",
            "in": "query",
            "description": "Data inicial do período de inclusão do cliente no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataInclusaoFim",
            "in": "query",
            "description": "Data final do período de inclusão do cliente no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraInicialUltimaAlteracao",
            "in": "query",
            "description": "Data/hora inicial da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraFinalUltimaAlteracao",
            "in": "query",
            "description": "Data/hora final da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "ordenacao",
            "in": "query",
            "description": "Informe 0-Data/hora alteração, 1-Tipo, 2-Código, 3-Código auxiliar, 4-CPF/CNPJ, 5-Nome, 6-E-mail, 7-Telefone, 8-Classificação, 9-Nome fantasia. Envie o valor negativo para ordem decrescente. Não informar = por código",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Dados retornados com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fantasia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cpfoucnpj": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datanascimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datafundacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "sexo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estadocivil": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "naturalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "nacionalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "profissao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cargo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "rendamensal": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "rendamensalfamilia": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "localtrabalho": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorentrada": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "fgts": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "conjuge": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "filiacaopai": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "filiacaomae": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerofilhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "facebook": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "linkedin": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "instagram": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },

                          "telefones": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "tipo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numero": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "emails": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "tipo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "enderecos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "tipo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "endereco": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "bairro": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "cidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "estado": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "cep": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },

                          "relacionamentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "lead": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "locador": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "proprietario": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "locatario": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "fiador": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "comprador": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "sindico": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "parceiro": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          },

                          "documentos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "tipo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numero": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "dataemissao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "orgao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Cliente/App_PesquisarCliente": {
      "get": {
        "tags": [
          "Cliente"
        ],
        "summary": "Retorna a lista de pessoas do Imoview CRM para pesquisa (Máximo 100 registros)",
        "description": "Retorno JSON da lista de pessoas do imoview CRM para pesquisa (autocomplete) em APP/Site (máximo 100 registros)",
        "operationId": "ClienteApp_PesquisarCliente",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome, CPF/CNPJ, telefone ou e-mail de pesquisa",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cpfoucnpj": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "rgouinsricaoestadual": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "email1": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Cliente/App_RetornarPessoas": {
      "get": {
        "tags": [
          "Cliente"
        ],
        "summary": "Retorna a lista de pessoas do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de pessoas do imoview CRM para pesquisa em APP/Site",
        "operationId": "ClienteApp_RetornarPessoas",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome, CPF, telefone, e-mail, endereço ou documento de pesquisa",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "tipoRelacionamento",
            "in": "query",
            "description": "Informe os tipos de relacionamentos separados por vírgula (,) ou vazio para todos (1-lead, 2-locador, 3-locatário, 4-fiador, 5-síndico, 6-proprietário, 7-comprador)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "email1": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Cliente/App_RetornarEmpresas": {
      "get": {
        "tags": [
          "Cliente"
        ],
        "summary": "Retorna a lista de empresas do Imoview CRM para pesquisa",
        "description": "Retorno JSON da lista de empresas do imoview CRM para pesquisa em APP/Site",
        "operationId": "ClienteApp_RetornarEmpresas",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome, CPF, telefone, e-mail, endereço ou documento de pesquisa",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "tipoRelacionamento",
            "in": "query",
            "description": "Informe os tipos de relacionamentos separados por vírgula (,) ou vazio para todos (1-lead, 2-locador, 3-locatário, 4-fiador, 5-síndico, 6-proprietário, 7-comprador)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "email1": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Cliente/App_RetornarDetalhesCliente": {
      "get": {
        "tags": [
          "Cliente"
        ],
        "summary": "Retorna os dados de cliente do Imoview CRM para APP/Site",
        "description": "Retorno JSON dos dados de cliente do imoview CRM para APP/Site",
        "operationId": "ClienteApp_RetornarDetalhesCliente",
        "parameters": [
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fantasia": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cpfoucnpj": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datanascimento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datafundacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "sexo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "estadocivil": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "naturalidade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "nacionalidade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "profissao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cargo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "rendamensal": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    },
                    "rendamensalfamilia": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    },
                    "localtrabalho": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "valorentrada": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    },
                    "fgts": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    },
                    "conjuge": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "filiacaopai": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "filiacaomae": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "numerofilhos": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "facebook": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "linkedin": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "instagram": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "telefone": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "emails": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "email": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "enderecos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "relacionamentos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "lead": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "locador": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "proprietario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "locatario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "fiador": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "comprador": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "sindico": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "documentos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataemissao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "orgao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Cliente/App_IncluirLead": {
      "post": {
        "tags": [
          "Cliente"
        ],
        "summary": "Inclui um lead pelo APP do Imoview ADM",
        "description": "Retorno JSON para incluir lead pelo APP do imoview ADM",
        "operationId": "ClienteApp_IncluirLead",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonLead",
            "in": "query",
            "description": "Dados via JSON. nome: OBRIGATÓRIO, email: OPCIONAL, telefone: OPCIONAL, sexo: OPCIONAL",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "object",
              "properties": {
                "nome": {
                  "type": "string",
                  "format": "string",
                  "example": "Gabriel"
                },
                "email": {
                  "type": "string",
                  "format": "string",
                  "example": "teste@teste.com"
                },
                "telefone": {
                  "type": "string",
                  "format": "string",
                  "example": "(31) 9999-9999"
                },
                "sexo": {
                  "type": "integer",
                  "format": "Int64",
                  "example": 1
                }
              }
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },

    "/Cliente/RetornarDadosCliente": {
      "get": {
        "tags": [
          "Cliente"
        ],
        "summary": "Retorna dados do cliente",
        "description": "Retorno JSON se existe lead/cliente e se tem atendimento ativo no Imoview CRM",
        "operationId": "ClienteRetonarDadosCliente",
        "parameters": [
          {
            "name": "emailOuTelefone",
            "in": "query",
            "description": "E-mail ou telefone do lead/cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "existe": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "codigoatendimento": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nomecorretor": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "emailcorretor": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },

    "/Imovel/RetornarCamposExtrasDisponiveis": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de campos extras de imóveis vagos/disponíveis do Imoview CRM para APP/Site",
        "description": "Retorno JSON da lista de campos extras de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarCamposExtrasDisponiveis",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarTiposImoveisDisponiveis": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de tipos de imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de tipos de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarTiposImoveisDisponiveis",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarTiposImoveisDisponiveisPorDestinacao": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de tipos de imóveis vagos/disponíveis agrupado por destinação do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de tipos de imóveis vagos/disponíveis agrupados por destinação do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarTiposImoveisDisponiveisPorDestinacao",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomedestinacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tiposimoveis": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigotipo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nometipo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarEstadosDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de estados dos imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de estados de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarEstadosDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "finalidade": {
                    "type": "integer",
                    "format": "Int64",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todos"
                  },
                  "codigoTipo": {
                    "type": "integer",
                    "format": "Int64",
                    "example": "OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis) ou 0 para todos"
                  },
                  "opcaoImovel": {
                    "type": "integer",
                    "format": "Int64",
                    "example": "OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "BA"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarCidadesDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de cidades dos imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de cidades de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarCidadesDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "finalidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todos"
                  },
                  "codigoTipo": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis) ou 0 para todos"
                  },
                  "codigoUnidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos"
                  },
                  "opcaoImovel": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)"
                  },
                  "estado": {
                    "type": "string",
                    "format": "String",
                    "example": "Enviar o estado, exemplo: MG, SP, RJ etc..."
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarRegioesDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de regiões dos imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de regiões de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarRegioesDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "finalidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todos"
                  },
                  "codigoTipo": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis) ou 0 para todos"
                  },
                  "codigoCidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código da cidade selecionada de acordo com a lista existente (RetornarCidadesDisponiveis), use vírgula (,) para enviar mais de uma cidade ou vazio para todos"
                  },
                  "codigoUnidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos"
                  },
                  "opcaoImovel": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarSubRegioesDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de sub-regiões dos imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de sub-regiões de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarSubRegioesDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "finalidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todos"
                  },
                  "codigoTipo": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis) ou 0 para todos"
                  },
                  "codigoCidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código da cidade selecionada de acordo com a lista existente (RetornarCidadesDisponiveis), use vírgula (,) para enviar mais de uma cidade ou vazio para todos"
                  },
                  "codigoRegiao": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código da região selecionada de acordo com a lista existente (RetornarRegioesDisponiveis), use vírgula (,) para enviar mais de uma região ou vazio para todos"
                  },
                  "codigoUnidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos"
                  },
                  "opcaoImovel": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarBairrosDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de bairros dos imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de bairros de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarBairrosDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "finalidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todos"
                  },
                  "codigoTipo": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis) ou 0 para todos"
                  },
                  "codigoCidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código da cidade selecionada de acordo com a lista existente (RetornarCidadesDisponiveis), use vírgula (,) para enviar mais de uma cidade ou vazio para todos"
                  },
                  "codigoRegiao": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código da região selecionada de acordo com a lista existente (RetornarRegioesDisponiveis), use vírgula (,) para enviar mais de uma região ou vazio para todos"
                  },
                  "codigoSubRegiao": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código da sub-região selecionada de acordo com a lista existente (RetornarSubRegioesDisponiveis), use vírgula (,) para enviar mais de uma subregiao ou vazio para todos"
                  },
                  "codigoUnidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos"
                  },
                  "opcaoImovel": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/PesquisarCidadeEBairrosDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de cidades, bairros e endereços dos imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de cidades, bairros e endereços de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelPesquisarCidadeEBairrosDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "finalidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todos"
                  },
                  "codigoTipo": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis) ou 0 para todos"
                  },
                  "codigoUnidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos"
                  },
                  "opcaoImovel": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)"
                  },
                  "textoPesquisa": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO - Texto para pesquisar cidades, bairros e endereço, enviar no mínimo 3 caracteres"
                  },
                  "pesquisarEndereco": {
                    "type": "boolean",
                    "format": "boolean",
                    "example": "OPCIONAL - Enviar true se quiser retornar endereços pelo texto de pesquisa, máximo 20 registros"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "cidades": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "bairros": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "enderecos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarCondominiosDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de condomínios do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de condomínios do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarCondominiosDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "numeroPagina": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Usado para paginação, enviar o nº da página atual"
                  },
                  "numeroRegistros": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Nº de registros para retorno"
                  },
                  "codigoUnidade": {
                    "type": "string",
                    "format": "String",
                    "example": "OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos"
                  },
                  "finalidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todos"
                  },
                  "codigoBairro": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar o código do bairro selecionado de acordo com a lista existente (RetornarBairrosDisponiveis), separar por vírgula (,) ou vazio para todos"
                  },
                  "codigoCidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar o código da cidade selecionada de acordo com a lista existente (RetornarCidadesDisponiveis) ou 0 para todos"
                  },
                  "tipoCondominio": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar 1 para vertical, 2 para horizontal ou 0 para todos"
                  },
                  "opcaoimovel": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)"
                  },
                  "textoPesquisa": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Nome do condomínio"
                  },
                  "retornoReduzido": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar true (somente código e nome) ou false"
                  },
                  "destaque": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar 1 para simples, 2 para destaque ou 3 para super destaque, 0 para todos"
                  },
                  "naoConsiderarImovel": {
                    "type": "boolean",
                    "format": "boolean",
                    "example": "OPCIONAL - Enviar true para não verificar se existem imóveis disponíveis"
                  },
                  "retornarIndicadores": {
                    "type": "boolean",
                    "format": "boolean",
                    "example": "OPCIONAL - Enviar true para retornar indicadores do condomínio"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formacobranca": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "construtora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anoconstrucao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "arealote": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "datahoracadastro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigobairro2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro2": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigosubregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "pontoreferencia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "melhoracesso": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "longitude": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "numerovagavisitante": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "tipovagavisitante": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroelevador": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "numerotorres": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "numeroandares": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "unidadesporandar": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "totalunidades": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "cartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "matriculacartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "livrocartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "folhacartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorfundoreserva": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoraluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoralugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areainterna": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaexterna": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilalugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilalugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilalugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "aguaindividual": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "alarme": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "aquecedoreletrico": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "aquecedorgas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "aquecedorsolar": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "boxdespejo": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "cercaeletrica": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "circuitotv": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "gascanalizado": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "interfone": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "jardim": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "lavanderia": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "portaoeletronico": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "portaria24horas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "seguranca24horas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "gramado": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "academia": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "churrasqueira": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "hidromassagem": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "homecinema": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "piscina": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "playground": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "quadraesportiva": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "quadratenis": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "beachtenis": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "quadrasquash": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "salamassagem": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "salaofestas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "salaojogos": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "wifi": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "espacogourmet": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "garageband": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlvideo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "condominio": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos360": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nomedocampocriado": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras2": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                }
                              }
                            }
                          },
                          "unidadesaluguel": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "quantidadedisponivel": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "quantidadealugado": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "disponivel": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "tipo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "unidadesvenda": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "quantidadedisponivel": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "quantidadevendido": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "disponivel": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "tipo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarDetalhesCondominioDisponivel": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de condomínios disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON de condomínios disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarDetalhesCondominioDisponivel",
        "parameters": [
          {
            "name": "codigoCondominio",
            "in": "query",
            "description": "Código do condomínio",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "naoConsiderarImovel",
            "in": "query",
            "description": "Enviar true para não verificar se existem imóveis disponíveis",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          },
          {
            "name": "retornarIndicadores",
            "in": "query",
            "description": "Enviar true para retornar indicadores do condomínio",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "formacobranca": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "construtora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "anoconstrucao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "arealote": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "datahoracadastro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigobairro2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro2": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigosubregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "pontoreferencia": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "melhoracesso": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "longitude": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "numerovagavisitante": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "tipovagavisitante": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroelevador": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "numerotorres": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "numeroandares": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "unidadesporandar": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "totalunidades": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "cartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "matriculacartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "livrocartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "folhacartorio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorfundoreserva": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoraluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoralugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areainterna": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaexterna": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilaluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilalugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilalugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilalugado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilvenda": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "primeiroquartilvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "medianaquartilvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "terceiroquartilvendido": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "aguaindividual": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "alarme": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "aquecedoreletrico": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "aquecedorgas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "aquecedorsolar": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "boxdespejo": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "cercaeletrica": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "circuitotv": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "gascanalizado": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "interfone": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "jardim": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "lavanderia": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "portaoeletronico": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "portaria24horas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "seguranca24horas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "gramado": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "academia": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "churrasqueira": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "hidromassagem": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "homecinema": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "piscina": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "playground": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "quadraesportiva": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "quadratenis": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "beachtenis": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "quadrasquash": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "salamassagem": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "salaofestas": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "salaojogos": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "wifi": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "espacogourmet": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "garageband": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlvideo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "condominio": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos360": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nomedocampocriado": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras2": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                }
                              }
                            }
                          },
                          "unidadesaluguel": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "quantidadedisponivel": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "quantidadealugado": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "disponivel": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "tipo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "unidadesvenda": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "quantidadedisponivel": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "quantidadevendido": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "disponivel": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "tipo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarImoveisDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de tipos de imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de imóveis vagos/disponíveis do imoview CRM para pesquisa em APP/Site <br><br> Tokens disponíveis: <br>finalidade: OBRIGATÓRIO - Enviar 1 para ALUGUEL ou 2 para VENDA<br>destinacao: OPCIONAL - Enviar 1 para Residencial, 2 para Comercial, 3 para Residencial e comercial, 4 para industrial, 5 para rural, 6 para temporada, 7 para corporativa, 8 para comercial e industrial ou 0 para todos<br>codigounidade: OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos<br>codigocondominio: OPCIONAL - Enviar o código do condomínio (lista de condomínios em Imovel/RetornarCondominiosDisponiveis) ou 0 para todos<br>codigoproprietario: OPCIONAL - Enviar o código do proprietário (lista autocomplete de pessoas em Cliente/App_PesquisarCliente) ou 0 para todos<br>codigocaptador: OPCIONAL - Enviar o código do captador (lista autocomplete de usuários em Usuario/App_RetornarUsuarios) ou 0 para todos<br>codigosimoveis: OPCIONAL - Enviar os códigos dos imóveis separados por vírgula (,) ou vazio para todos<br>codigoTipo: OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis), para mais de um tipo, separar por vírgula (,) ou vazio para todos<br>estado: OPCIONAL - Enviar a sigla do estado selecionado de acordo com a lista existente (RetornarEstadosDisponiveis) ou vazio para todos<br>codigocidade: OPCIONAL - Enviar o código da cidade selecionada de acordo com a lista existente (RetornarCidadesDisponiveis) ou 0 para todos<br>codigoregiao: OPCIONAL - Enviar o código da região selecionada de acordo com a lista existente (RetornarRegioesDisponiveis) ou 0 para todos<br>codigosubregiao: OPCIONAL - Enviar o código da sub-região selecionada de acordo com a lista existente (RetornarSubRegioesDisponiveis) ou 0 para todos<br>codigosbairros: OPCIONAL - Enviar os códigos dos bairros selecionados de acordo com a lista existente (RetornarBairrosDisponiveis) separados por vírgula (,) ou vazio para todos<br>endereco: OPCIONAL - Enviar parte do logradouro do endereço ou vazio para todos<br>edificio: OPCIONAL - Enviar parte do edifício/torre ou vazio para todos<br>numeroquartos: OPCIONAL - Enviar nº de quartos a partir, 0 para todos ou negativo para exato<br>numerovagas: OPCIONAL - Enviar nº de vagas a partir, 0 para todos ou negativo para exato<br>numerobanhos: OPCIONAL - Enviar nº de banheiros a partir, 0 para todos ou negativo para exato<br>numerosuite: OPCIONAL - Enviar nº de suítes a partir, 0 para todos ou negativo para exato<br>numerovaranda: OPCIONAL - Enviar nº de varandas a partir, 0 para todos<br>numeroelevador: OPCIONAL - Enviar nº de elevadores a partir, 0 para todos<br>valorde: OPCIONAL - Enviar valor a partir, 0 para todos<br>valorate: OPCIONAL - Enviar valor até, 0 para todos<br>valortotalde: OPCIONAL - Usado para finalidade aluguel, enviar valor total (valor + iptu + condomínio) a partir, 0 para todos<br>valortotalate: OPCIONAL - Usado para finalidade aluguel, enviar valor total (valor + iptu + condomínio) até, 0 para todos<br>areaprincipalde: OPCIONAL - Enviar área principal a partir, 0 para todos<br>areaprincipalate: OPCIONAL - Enviar área principal até, 0 para todos<br>areade: OPCIONAL - Enviar área interna a partir, 0 para todos<br>areaate: OPCIONAL - Enviar área interna até, 0 para todos<br>areaexternade: OPCIONAL - Enviar área externa a partir, 0 para todos<br>areaexternaate: OPCIONAL - Enviar área externa até, 0 para todos<br>extras: OPCIONAL - Enviar código gerado no CRM para o campo extra, separados por vírgula (,) ou vazio para não filtrar<br>academia: OPCIONAL - Enviar true ou false<br>aceitafinanciamento: OPCIONAL - Enviar true ou false<br>aceitapermuta: OPCIONAL - Enviar true ou false<br>alarme: OPCIONAL - Enviar true ou false<br>arealazer: OPCIONAL - Enviar true ou false<br>areaprivativa: OPCIONAL - Enviar true ou false<br>areaservico: OPCIONAL - Enviar true ou false<br>boxbanheiro: OPCIONAL - Enviar true ou false<br>boxDespejo: OPCIONAL - Enviar true ou false<br>churrasqueira: OPCIONAL - Enviar true ou false<br>circuitotv: OPCIONAL - Enviar true ou false<br>closet: OPCIONAL - Enviar true ou false<br>dce: OPCIONAL - Enviar true ou false<br>exclusivo: OPCIONAL - Enviar true ou false<br>interfone: OPCIONAL - Enviar true ou false<br>jardim: OPCIONAL - Enviar true ou false<br>lavabo: OPCIONAL - Enviar true ou false<br>mobiliado: OPCIONAL - Enviar true ou false<br>naplanta: OPCIONAL - Enviar true ou false<br>piscina: OPCIONAL - Enviar true ou false<br>playground: OPCIONAL - Enviar true ou false<br>portaoeletronico: OPCIONAL - Enviar true ou false<br>portaria24h: OPCIONAL - Enviar true ou false<br>quadraesportiva: OPCIONAL - Enviar true ou false<br>quadratenis salaofestas: OPCIONAL - Enviar true ou false<br>salaojogos: OPCIONAL - Enviar true ou false<br>sauna: OPCIONAL - Enviar true ou false<br>varanda: OPCIONAL - Enviar true ou false<br>wifi: OPCIONAL - Enviar true ou false<br>ocupado: OPCIONAL - Enviar true para imóveis ocupados, ou false para desocupado ou vazio para todos<br>alugado: OPCIONAL - Enviar true ou false<br>quartoqtdeexata: OPCIONAL - Enviar true ou false<br>vagaqtdexata: OPCIONAL - Enviar true ou false<br>datacadastroinicio: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>datacadastrofim: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>dataultimaalteracaoinicio: OPCIONAL - Enviar data no formato dd/mm/yyyy hh:mm:ss<br>dataultimaalteracaofim: OPCIONAL - Enviar data no formato dd/mm/yyyy hh:mm:ss<br>datavagodesdeinicio: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>datavagodesdefim: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>destaque: OPCIONAL - Enviar 1 para simples, 2 para destaque ou 3 para super destaque, 0 para todos<br>opcaoimovel: OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)<br>retornomapa: OPCIONAL - Enviar true ou false, usado para exibir os imóveis no mapa (retorno com até 100 registros e JSON reduzido)<br>retornomapaapp: OPCIONAL - Enviar true ou false, usado para exibir os imóveis no mapa (retorno com até 1000 registros e JSON reduzido)<br>naoexibirtitulo: OPCIONAL - Enviar true ou false (se retornomapa, retornomapaapp ou retornodestaque = true))<br>naoexibirlatitude: OPCIONAL - Enviar true ou false (se retornomapaapp))<br>numeropagina: OBRIGATÓRIO - Usado para paginação, enviar o nº da página atual<br>numeroregistros: OBRIGATÓRIO - Nº de registros para retorno, máximo 20<br>ordenacao: OPCIONAL - Tipo de ordenação, codigoasc, codigodesc, valorasc, valordesc, dataatualizacaoasc, dataatualizacaodesc, datainclusaoasc, datainclusaodesc, datavagodesdeasc, datavagodesdedesc, destaque, areainternaasc, areainternadesc, areaexternaasc, areaexternadesc, arealoteasc, arealotedesc ou vazio para assumir destaque decrescente<br>exibircaptadores: OPCIONAL - Enviar true ou false<br>exibiranexos: OPCIONAL - Enviar true ou false<br>somentecomurlpublica: OPCIONAL - Enviar true ou false<br>somentecomvideo: OPCIONAL - Enviar true ou false<br>espacogourmet: OPCIONAL - Enviar true ou false<br>varandagourmet: OPCIONAL - Enviar true ou false<br>identificador: OPCIONAL - Identificador do imóvel<br>identificadorchave: OPCIONAL - Identificador de chaves<br>exibirproposta: OPCIONAL - Envia true para retornar se tem proposta/reserva e data final reserva<br>armariobanheiro: OPCIONAL - Enviar true ou false<br>armariocozinha: OPCIONAL - Enviar true ou false<br>armarioquarto: OPCIONAL - Enviar true ou false<br/>naoconsiderarmeusite: OPCIONAL - Enviar true para NÃO considerar 'Exibir meu site', 'Publicação na internet' e 'Situação'. Caso queira filtrar a situação, enviar o parâmetro 'situacao' com as opções (0 - Todos, 1 - Vago/Disponível, 2 - Alugado, 3 - Vendido, 4 - Em reforma, 5 - Em moderação, 6 - Desativado, 7 - Em desocupação)<br>codigoRedeAdmin: OPCIONAL - Usar quando for admin de rede, enviar 9999 para meus imóveis, código da rede negativo para somente meus imóveis da rede ou código da rede para imóveis da rede<br>codigoRedeAssociado: OPCIONAL - Usar quando for associado de rede, enviar 9999 para meus imóveis, código da rede negativo para somente meus imóveis da rede ou código da rede para imóveis da rede<br>novosultimos7dias: OPCIONAL, enviar true para filtrar vago desde a 7 dias<br/>vistamar: OPCIONAL - Enviar true ou false<br/>vistamontanha: OPCIONAL - Enviar true ou false<br/>vistalago: OPCIONAL - Enviar true ou false",
        "operationId": "RetornarImoveisDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Imoveis"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigomae": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "emdesocupacao": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimentofilho": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "nomeempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "siteempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocondominio": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomecondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metadescription": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "unidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "telefoneunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "emaileunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoranterior": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorm2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorminimo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaximo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxaadm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxacomissao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "rentabilidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominiomaisiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "indiceiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptuanual": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorspu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valortaxaresiduo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorparcelaseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoritbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualitbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoravaliacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigosubregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pontoreferencia": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "melhoracesso": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "construtora": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "localchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificadorchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "aceitafinanciamento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aceitapermuta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anoconstrucao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numerochave": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosalas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovarandas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroelevador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidadesporandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroandares": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "totalunidades": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destaque": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipomedida": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areainterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaexterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arealote": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "matriculacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "livrocartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "folhacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "exclusivo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelocupado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelalugado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "naplanta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placafaixa": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arcondicionado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "areaservico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "areaprivativa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "armariobanheiro": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armariocozinha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armarioquarto": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "box": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "closet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "dce": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "despensa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "escritorio": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "mobiliado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "rouparia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aguaindividual": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "alarme": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorgas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedoreletrico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorsolar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "boxdespejo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "cercaeletrica": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "circuitotv": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "gascanalizado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "interfone": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "jardim": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavanderia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaoeletronico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaria24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "seguranca24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quintal": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "gramado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "academia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "churrasqueira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "hidromassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "homecinema": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "piscina": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "playground": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadraesportiva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadratenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salamassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaofestas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaojogos": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "sauna": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "wifi": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "espacogourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "garageband": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadrasquash": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "beachtenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "solmanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "varandagourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lareira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "cabeamentoestruturado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "tvacabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "conexaointernet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamontanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistalago": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "permiteanimais": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "datahoracadastro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimavalidacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimasituacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoravagodesde": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoFotoPrincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlvideo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlpublica": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areapatio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaarmazenagem": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pedireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisointerno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisoexterno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "forcainstalada": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "alturaportao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerodoca": {
                            "type": "integer",
                            "format": "Int32",
                            "example": "int"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "visibilidade": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          },
                          "captadores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "principal": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "foto": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "creci": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "condominio": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos360": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "extras2": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "chaveiros": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacaocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "unidade": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "unidadecodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "numerolacre": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadro": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadrocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "posicao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "posicaocodigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "chaves": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "tipo": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      },
                                      "tipocodigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "observacao": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }


                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarImoveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de imóveis do Imoview CRM por situação",
        "description": "Retorno JSON da lista de imóveis do imoview CRM, filtrando pela situação informada.<br><strong>situacao</strong> - 0-Todas, 1-Vago/Disponível, 2-Alugado, 3-Vendido, 4-Em reforma, 5-Em moderação, 6-Desativado, 7-Em desocupação. Não informar equivale a 0 (todas). Mesmos filtros e mesmo retorno de /Imovel/RetornarImoveisDisponiveis <br><br> Tokens disponíveis: <br>finalidade: OBRIGATÓRIO - Enviar 1 para ALUGUEL ou 2 para VENDA<br>destinacao: OPCIONAL - Enviar 1 para Residencial, 2 para Comercial, 3 para Residencial e comercial, 4 para industrial, 5 para rural, 6 para temporada, 7 para corporativa, 8 para comercial e industrial ou 0 para todos<br>codigounidade: OPCIONAL - Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todos<br>codigocondominio: OPCIONAL - Enviar o código do condomínio (lista de condomínios em Imovel/RetornarCondominiosDisponiveis) ou 0 para todos<br>codigoproprietario: OPCIONAL - Enviar o código do proprietário (lista autocomplete de pessoas em Cliente/App_PesquisarCliente) ou 0 para todos<br>codigocaptador: OPCIONAL - Enviar o código do captador (lista autocomplete de usuários em Usuario/App_RetornarUsuarios) ou 0 para todos<br>codigosimoveis: OPCIONAL - Enviar os códigos dos imóveis separados por vírgula (,) ou vazio para todos<br>codigoTipo: OPCIONAL - Enviar o código do tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis), para mais de um tipo, separar por vírgula (,) ou vazio para todos<br>estado: OPCIONAL - Enviar a sigla do estado selecionado de acordo com a lista existente (RetornarEstadosDisponiveis) ou vazio para todos<br>codigocidade: OPCIONAL - Enviar o código da cidade selecionada de acordo com a lista existente (RetornarCidadesDisponiveis) ou 0 para todos<br>codigoregiao: OPCIONAL - Enviar o código da região selecionada de acordo com a lista existente (RetornarRegioesDisponiveis) ou 0 para todos<br>codigosubregiao: OPCIONAL - Enviar o código da sub-região selecionada de acordo com a lista existente (RetornarSubRegioesDisponiveis) ou 0 para todos<br>codigosbairros: OPCIONAL - Enviar os códigos dos bairros selecionados de acordo com a lista existente (RetornarBairrosDisponiveis) separados por vírgula (,) ou vazio para todos<br>endereco: OPCIONAL - Enviar parte do logradouro do endereço ou vazio para todos<br>edificio: OPCIONAL - Enviar parte do edifício/torre ou vazio para todos<br>numeroquartos: OPCIONAL - Enviar nº de quartos a partir, 0 para todos ou negativo para exato<br>numerovagas: OPCIONAL - Enviar nº de vagas a partir, 0 para todos ou negativo para exato<br>numerobanhos: OPCIONAL - Enviar nº de banheiros a partir, 0 para todos ou negativo para exato<br>numerosuite: OPCIONAL - Enviar nº de suítes a partir, 0 para todos ou negativo para exato<br>numerovaranda: OPCIONAL - Enviar nº de varandas a partir, 0 para todos<br>numeroelevador: OPCIONAL - Enviar nº de elevadores a partir, 0 para todos<br>valorde: OPCIONAL - Enviar valor a partir, 0 para todos<br>valorate: OPCIONAL - Enviar valor até, 0 para todos<br>valortotalde: OPCIONAL - Usado para finalidade aluguel, enviar valor total (valor + iptu + condomínio) a partir, 0 para todos<br>valortotalate: OPCIONAL - Usado para finalidade aluguel, enviar valor total (valor + iptu + condomínio) até, 0 para todos<br>areaprincipalde: OPCIONAL - Enviar área principal a partir, 0 para todos<br>areaprincipalate: OPCIONAL - Enviar área principal até, 0 para todos<br>areade: OPCIONAL - Enviar área interna a partir, 0 para todos<br>areaate: OPCIONAL - Enviar área interna até, 0 para todos<br>areaexternade: OPCIONAL - Enviar área externa a partir, 0 para todos<br>areaexternaate: OPCIONAL - Enviar área externa até, 0 para todos<br>extras: OPCIONAL - Enviar código gerado no CRM para o campo extra, separados por vírgula (,) ou vazio para não filtrar<br>academia: OPCIONAL - Enviar true ou false<br>aceitafinanciamento: OPCIONAL - Enviar true ou false<br>aceitapermuta: OPCIONAL - Enviar true ou false<br>alarme: OPCIONAL - Enviar true ou false<br>arealazer: OPCIONAL - Enviar true ou false<br>areaprivativa: OPCIONAL - Enviar true ou false<br>areaservico: OPCIONAL - Enviar true ou false<br>boxbanheiro: OPCIONAL - Enviar true ou false<br>boxDespejo: OPCIONAL - Enviar true ou false<br>churrasqueira: OPCIONAL - Enviar true ou false<br>circuitotv: OPCIONAL - Enviar true ou false<br>closet: OPCIONAL - Enviar true ou false<br>dce: OPCIONAL - Enviar true ou false<br>exclusivo: OPCIONAL - Enviar true ou false<br>interfone: OPCIONAL - Enviar true ou false<br>jardim: OPCIONAL - Enviar true ou false<br>lavabo: OPCIONAL - Enviar true ou false<br>mobiliado: OPCIONAL - Enviar true ou false<br>naplanta: OPCIONAL - Enviar true ou false<br>piscina: OPCIONAL - Enviar true ou false<br>playground: OPCIONAL - Enviar true ou false<br>portaoeletronico: OPCIONAL - Enviar true ou false<br>portaria24h: OPCIONAL - Enviar true ou false<br>quadraesportiva: OPCIONAL - Enviar true ou false<br>quadratenis salaofestas: OPCIONAL - Enviar true ou false<br>salaojogos: OPCIONAL - Enviar true ou false<br>sauna: OPCIONAL - Enviar true ou false<br>varanda: OPCIONAL - Enviar true ou false<br>wifi: OPCIONAL - Enviar true ou false<br>ocupado: OPCIONAL - Enviar true para imóveis ocupados, ou false para desocupado ou vazio para todos<br>alugado: OPCIONAL - Enviar true ou false<br>quartoqtdeexata: OPCIONAL - Enviar true ou false<br>vagaqtdexata: OPCIONAL - Enviar true ou false<br>datacadastroinicio: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>datacadastrofim: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>dataultimaalteracaoinicio: OPCIONAL - Enviar data no formato dd/mm/yyyy hh:mm:ss<br>dataultimaalteracaofim: OPCIONAL - Enviar data no formato dd/mm/yyyy hh:mm:ss<br>datavagodesdeinicio: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>datavagodesdefim: OPCIONAL - Enviar data no formato dd/mm/yyyy<br>destaque: OPCIONAL - Enviar 1 para simples, 2 para destaque ou 3 para super destaque, 0 para todos<br>opcaoimovel: OPCIONAL - Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 4 para avulsos e lançamentos mãe, 0 para todos (avulsos e lançamentos por tipo e m²)<br>retornomapa: OPCIONAL - Enviar true ou false, usado para exibir os imóveis no mapa (retorno com até 100 registros e JSON reduzido)<br>retornomapaapp: OPCIONAL - Enviar true ou false, usado para exibir os imóveis no mapa (retorno com até 1000 registros e JSON reduzido)<br>naoexibirtitulo: OPCIONAL - Enviar true ou false (se retornomapa, retornomapaapp ou retornodestaque = true))<br>naoexibirlatitude: OPCIONAL - Enviar true ou false (se retornomapaapp))<br>numeropagina: OBRIGATÓRIO - Usado para paginação, enviar o nº da página atual<br>numeroregistros: OBRIGATÓRIO - Nº de registros para retorno, máximo 20<br>ordenacao: OPCIONAL - Tipo de ordenação, codigoasc, codigodesc, valorasc, valordesc, dataatualizacaoasc, dataatualizacaodesc, datainclusaoasc, datainclusaodesc, datavagodesdeasc, datavagodesdedesc, destaque, areainternaasc, areainternadesc, areaexternaasc, areaexternadesc, arealoteasc, arealotedesc ou vazio para assumir destaque decrescente<br>exibircaptadores: OPCIONAL - Enviar true ou false<br>exibiranexos: OPCIONAL - Enviar true ou false<br>somentecomurlpublica: OPCIONAL - Enviar true ou false<br>somentecomvideo: OPCIONAL - Enviar true ou false<br>espacogourmet: OPCIONAL - Enviar true ou false<br>varandagourmet: OPCIONAL - Enviar true ou false<br>identificador: OPCIONAL - Identificador do imóvel<br>identificadorchave: OPCIONAL - Identificador de chaves<br>exibirproposta: OPCIONAL - Envia true para retornar se tem proposta/reserva e data final reserva<br>armariobanheiro: OPCIONAL - Enviar true ou false<br>armariocozinha: OPCIONAL - Enviar true ou false<br>armarioquarto: OPCIONAL - Enviar true ou false<br/>naoconsiderarmeusite: OPCIONAL - Enviar true para NÃO considerar 'Exibir meu site', 'Publicação na internet' e 'Situação'. Caso queira filtrar a situação, enviar o parâmetro 'situacao' com as opções (0 - Todos, 1 - Vago/Disponível, 2 - Alugado, 3 - Vendido, 4 - Em reforma, 5 - Em moderação, 6 - Desativado, 7 - Em desocupação)<br>codigoRedeAdmin: OPCIONAL - Usar quando for admin de rede, enviar 9999 para meus imóveis, código da rede negativo para somente meus imóveis da rede ou código da rede para imóveis da rede<br>codigoRedeAssociado: OPCIONAL - Usar quando for associado de rede, enviar 9999 para meus imóveis, código da rede negativo para somente meus imóveis da rede ou código da rede para imóveis da rede<br>novosultimos7dias: OPCIONAL, enviar true para filtrar vago desde a 7 dias<br/>vistamar: OPCIONAL - Enviar true ou false<br/>vistamontanha: OPCIONAL - Enviar true ou false<br/>vistalago: OPCIONAL - Enviar true ou false",
        "operationId": "RetornarImoveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ImoveisPorSituacao"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigomae": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "emdesocupacao": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimentofilho": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "nomeempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "siteempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocondominio": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomecondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metadescription": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "unidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "telefoneunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "emaileunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoranterior": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorm2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorminimo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaximo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxaadm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxacomissao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "rentabilidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominiomaisiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "indiceiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptuanual": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorspu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valortaxaresiduo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorparcelaseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoritbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualitbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoravaliacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigosubregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pontoreferencia": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "melhoracesso": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "construtora": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "localchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificadorchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "aceitafinanciamento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aceitapermuta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anoconstrucao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numerochave": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosalas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovarandas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroelevador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidadesporandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroandares": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "totalunidades": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destaque": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipomedida": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areainterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaexterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arealote": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "matriculacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "livrocartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "folhacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "exclusivo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelocupado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelalugado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "naplanta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placafaixa": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arcondicionado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "areaservico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "areaprivativa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "armariobanheiro": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armariocozinha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armarioquarto": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "box": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "closet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "dce": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "despensa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "escritorio": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "mobiliado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "rouparia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aguaindividual": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "alarme": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorgas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedoreletrico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorsolar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "boxdespejo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "cercaeletrica": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "circuitotv": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "gascanalizado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "interfone": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "jardim": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavanderia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaoeletronico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaria24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "seguranca24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quintal": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "gramado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "academia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "churrasqueira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "hidromassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "homecinema": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "piscina": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "playground": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadraesportiva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadratenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salamassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaofestas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaojogos": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "sauna": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "wifi": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "espacogourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "garageband": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadrasquash": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "beachtenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "solmanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "varandagourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lareira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "cabeamentoestruturado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "tvacabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "conexaointernet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamontanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistalago": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "permiteanimais": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "datahoracadastro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimavalidacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimasituacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoravagodesde": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoFotoPrincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlvideo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlpublica": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areapatio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaarmazenagem": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pedireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisointerno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisoexterno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "forcainstalada": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "alturaportao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerodoca": {
                            "type": "integer",
                            "format": "Int32",
                            "example": "int"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "visibilidade": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          },
                          "captadores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "principal": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "foto": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "creci": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "condominio": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos360": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "extras2": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "chaveiros": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacaocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "unidade": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "unidadecodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "numerolacre": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadro": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadrocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "posicao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "posicaocodigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "chaves": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "tipo": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      },
                                      "tipocodigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "observacao": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }


                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarDetalhesImovelDisponivel": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de detalhes de imóveis vagos/disponíveis do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON de imóvel vagos/disponíveis do imoview CRM para pesquisa em APP/Site",
        "operationId": "ImovelRetornarDetalhesImovelDisponivel",
        "parameters": [
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "items": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigomae": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "emdesocupacao": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimentofilho": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "nomeempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "siteempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocondominio": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomecondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metadescription": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "unidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "telefoneunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "emaileunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoranterior": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorm2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorminimo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaximo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxaadm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxacomissao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "rentabilidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominiomaisiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "indiceiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptuanual": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorspu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valortaxaresiduo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorparcelaseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoritbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualitbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoravaliacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigosubregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pontoreferencia": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "melhoracesso": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "construtora": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "localchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificadorchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "aceitafinanciamento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aceitapermuta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anoconstrucao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numerochave": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosalas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovarandas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroelevador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidadesporandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroandares": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "totalunidades": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destaque": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipomedida": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areainterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaexterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arealote": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "matriculacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "livrocartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "folhacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "exclusivo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelocupado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelalugado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "naplanta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placafaixa": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arcondicionado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "areaservico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "areaprivativa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "armariobanheiro": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armariocozinha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armarioquarto": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "box": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "closet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "dce": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "despensa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "escritorio": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "mobiliado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "rouparia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aguaindividual": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "alarme": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorgas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedoreletrico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorsolar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "boxdespejo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "cercaeletrica": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "circuitotv": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "gascanalizado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "interfone": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "jardim": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavanderia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaoeletronico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaria24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "seguranca24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quintal": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "gramado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "academia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "churrasqueira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "hidromassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "homecinema": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "piscina": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "playground": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadraesportiva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadratenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salamassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaofestas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaojogos": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "sauna": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "wifi": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "espacogourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "garageband": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadrasquash": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "beachtenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "solmanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "varandagourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lareira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "cabeamentoestruturado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "tvacabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "conexaointernet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamontanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistalago": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "permiteanimais": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "datahoracadastro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimavalidacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimasituacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoravagodesde": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoFotoPrincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlvideo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlpublica": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areapatio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaarmazenagem": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pedireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisointerno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisoexterno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "forcainstalada": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "alturaportao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerodoca": {
                            "type": "integer",
                            "format": "Int32",
                            "example": "int"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          },
                          "captadores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "principal": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "foto": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "creci": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "condominio": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos360": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "extras2": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "chaveiros": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacaocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "unidade": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "unidadecodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "numerolacre": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadro": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadrocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "posicao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "posicaocodigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "chaves": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "tipo": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      },
                                      "tipocodigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "observacao": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },


                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }


                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/App_RetornarDetalhesImovel": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de detalhess de imóveis vagos/disponíveis do Imoview CRM para APP",
        "description": "Retorno JSON de imóvel do imoview CRM para APP",
        "operationId": "ImovelApp_RetornarDetalhesImovel",
        "parameters": [
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigomae": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimentofilho": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "nomeempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "siteempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocondominio": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomecondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metadescription": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "unidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "telefoneunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "emaileunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoranterior": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorm2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorminimo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaximo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxaadm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxacomissao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "rentabilidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominiomaisiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "indiceiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptuanual": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorspu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valortaxaresiduo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorparcelaseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoritbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualitbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoravaliacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigosubregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pontoreferencia": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "melhoracesso": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "construtora": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "localchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificadorchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "aceitafinanciamento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aceitapermuta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anoconstrucao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numerochave": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosalas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovarandas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroelevador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidadesporandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroandares": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "totalunidades": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destaque": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipomedida": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areainterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaexterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arealote": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "matriculacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "livrocartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "folhacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "exclusivo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelocupado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelalugado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "naplanta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placafaixa": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arcondicionado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "areaservico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "areaprivativa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "armariobanheiro": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armariocozinha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armarioquarto": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "box": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "closet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "dce": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "despensa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "escritorio": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "mobiliado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "rouparia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aguaindividual": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "alarme": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorgas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedoreletrico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorsolar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "boxdespejo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "cercaeletrica": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "circuitotv": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "gascanalizado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "interfone": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "jardim": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavanderia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaoeletronico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaria24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "seguranca24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quintal": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "gramado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "academia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "churrasqueira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "hidromassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "homecinema": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "piscina": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "playground": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadraesportiva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadratenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salamassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaofestas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaojogos": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "sauna": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "wifi": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "espacogourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "garageband": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadrasquash": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "beachtenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "solmanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "varandagourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lareira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "cabeamentoestruturado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "tvacabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "conexaointernet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamontanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistalago": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "permiteanimais": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "datahoracadastro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimavalidacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimasituacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoravagodesde": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoFotoPrincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlvideo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlpublica": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areapatio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaarmazenagem": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pedireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisointerno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisoexterno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "forcainstalada": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "alturaportao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerodoca": {
                            "type": "integer",
                            "format": "Int32",
                            "example": "int"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          },
                          "captadores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "principal": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "foto": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "creci": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "condominio": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos360": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "extras2": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "chaveiros": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacaocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "unidade": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "unidadecodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "numerolacre": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadro": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadrocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "posicao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "posicaocodigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "chaves": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "tipo": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      },
                                      "tipocodigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "observacao": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Imovel/RetornarImoveisAlterados": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de imóveis alterados do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON dos imóveis alterados do imoview CRM para pesquisa em APP/Site.<br><br><strong>Situação:</strong> retorna imóveis de <strong>todas as situações</strong> (vago/disponível, alugado, vendido, em reforma, em moderação, desativado e em desocupação) - este endpoint não tem filtro de situação.<br><strong>Exibir meu site:</strong> por padrão retorna apenas os imóveis com 'Exibir meu site' marcado. Envie <strong>naoconsiderarmeusite = true</strong> para trazer também os que estão sem a marcação.",
        "operationId": "ImovelRetornarImoveisAlterados",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "dataultimaalteracaoinicio": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO: Enviar data no formato dd/mm/yyyy hh:mm:ss"
                  },
                  "dataultimaalteracaofim": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL: Enviar data no formato dd/mm/yyyy hh:mm:ss, vazio para não limitar"
                  },
                  "naoconsiderarmeusite": {
                    "type": "boolean",
                    "format": "boolean",
                    "example": "OPCIONAL: Enviar true para NÃO considerar 'Exibir meu site' e trazer todos os imóveis. Default false (somente os com 'Exibir meu site' marcado)"
                  },
                  "finalidade": {
                    "type": "string",
                    "format": "string",
                    "example": "Enviar 1 para ALUGUEL, 2 para VENDA ou vazio para todos"
                  },
                  "numeroPagina": {
                    "type": "string",
                    "format": "string",
                    "example": "Usado para paginação, enviar o nº da página atual"
                  },
                  "numeroRegistros": {
                    "type": "string",
                    "format": "string",
                    "example": "Nº de registros para retorno, máximo 50"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorvalor": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "menorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "maiorarea": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigomae": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "empreendimentofilho": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "nomeempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "siteempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocondominio": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomecondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metadescription": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "unidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "telefoneunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "emaileunidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigodestinacao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destinacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigotipo2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoranterior": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorm2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorminimo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaximo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxaadm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "taxacomissao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "rentabilidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valormaiscondominiomaisiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "indiceiptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoriptuanual": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorspu": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valortaxaresiduo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorparcelaseguroincendio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoritbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualitbi": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valorregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "percentualregistro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "valoravaliacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigobairro2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "codigoregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigosubregiao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "subregiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade2": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "estado2": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pontoreferencia": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "melhoracesso": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "construtora": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "localchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "identificadorchave": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "aceitafinanciamento": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aceitapermuta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anoconstrucao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numerochave": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosalas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipovagas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerovarandas": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroelevador": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numeroandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidadesporandar": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numeroandares": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "totalunidades": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "destaque": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "tipomedida": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areainterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaexterna": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arealote": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemfundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "metragemladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "anotacoes": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofrente": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaofundo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladodireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "confrontacaoladoesquerdo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "matriculacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "livrocartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "folhacartorio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "exclusivo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelocupado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "imovelalugado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "naplanta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "placafaixa": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "posicao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "arcondicionado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "areaservico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "areaprivativa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "armariobanheiro": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armariocozinha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "armarioquarto": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "box": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "closet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "dce": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "despensa": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "escritorio": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "mobiliado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "rouparia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aguaindividual": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "alarme": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorgas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedoreletrico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "aquecedorsolar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "boxdespejo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "cercaeletrica": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "circuitotv": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "gascanalizado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "interfone": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "jardim": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lavanderia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaoeletronico": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "portaria24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "seguranca24horas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quintal": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "gramado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "academia": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "churrasqueira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "hidromassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "homecinema": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "piscina": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "playground": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadraesportiva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadratenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salamassagem": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaofestas": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "salaojogos": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "sauna": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "wifi": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "espacogourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "garageband": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "quadrasquash": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "beachtenis": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "solmanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamar": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "varandagourmet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "lareira": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "cabeamentoestruturado": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "tvacabo": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "conexaointernet": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistamontanha": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "vistalago": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "permiteanimais": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "false"
                          },
                          "datahoracadastro": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimavalidacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoraultimasituacao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "datahoravagodesde": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoFotoPrincipal": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlvideo": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "urlpublica": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "descricaoempreendimento": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areapatio": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "areaarmazenagem": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "pedireito": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisointerno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "cargapisoexterno": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "forcainstalada": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "alturaportao": {
                            "type": "string",
                            "format": "String",
                            "example": "string"
                          },
                          "numerodoca": {
                            "type": "integer",
                            "format": "Int32",
                            "example": "int"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },
                          "anexos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          },
                          "captadores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "nome": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "email": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "telefone": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "principal": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "percentual": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "foto": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "creci": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "condominio": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "fotos360": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "descricao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "empreendimento": {
                                  "type": "boolean",
                                  "format": "Boolean",
                                  "example": "bool"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "url": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlm": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "urlpp": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "extras": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "extras2": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Acesso para deficiente": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "false"
                                }
                              }
                            }
                          },
                          "chaveiros": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacaocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "unidade": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "unidadecodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "numerolacre": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadro": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "quadrocodigo": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "posicao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "posicaocodigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "chaves": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "tipo": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      },
                                      "tipocodigo": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "quantidade": {
                                        "type": "integer",
                                        "format": "Int32",
                                        "example": "int"
                                      },
                                      "observacao": {
                                        "type": "string",
                                        "format": "String",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },

                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarImoveisVistoria": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de tipos de imóveis de aluguel para integração com vistoria",
        "description": "Retorno JSON da lista de imóveis finalidade aluguel com situações moderação, vago/disponível ou alugado do imoview CRM para integração com vistoria",
        "operationId": "ImovelRetornarImoveisVistoria",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "datahoraultimaalteracao": {
                    "type": "string",
                    "format": "string",
                    "example": "Enviar data/hora de início, ou seja, todos os imóveis alterados desta data para frente, vão estar no retorno, ou vazio para todos - formato dd/mm/yyyy hh:mm"
                  },
                  "numeroPagina": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO - Usado para paginação, enviar o nº da página atual"
                  },
                  "numeroRegistros": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO - Nº de registros para retorno, máximo 50"
                  },
                  "codigoproprietario": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar código do proprietário ou vazio para todos"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigounidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroendereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigobairro": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cep": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigotipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "Proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "codigoauxiliar": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "cpfoucnpj": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "telefone1": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "telefone2": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "telefone3": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "email1": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "email2": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "nacionalidade": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "profissao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "estadocivil": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "percentual": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/IncluirAnexo": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Inclui anexo a um imóvel",
        "description": "Retorno JSON para incluir anexo a um imóvel do imoview CRM",
        "operationId": "ImovelIncluirAnexo",
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "anexos": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "parametros",
            "in": "query",
            "description": "Enviar os parâmetros via JSON. Exemplo em Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarHorariosVisitasDisponiveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna horários disponíveis para visita de um imóvel",
        "description": "Retorno JSON para agendamento de visitas de um imóvel do imoview CRM",
        "operationId": "ImovelRetornarHorariosVisitasDisponiveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigoimovel": {
                    "type": "integer",
                    "format": "Int64",
                    "example": "OBRIGATÓRIO - Enviar o código do imóvel existente no imoview CRM"
                  },
                  "data": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO - Enviar a data referência para agendamento, formato dd/mm/yyyy"
                  },
                  "codigounidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar código da unidade ou será assumido a unidade do imóvel"
                  },
                  "codigocorretor": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar o código do corretor ou 0 para todos"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "horarios": {
                      "type": "array",
                      "items": {}
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarHorariosVisitasDisponiveisCaptacao": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna horários disponíveis para visita de um imóvel de captação",
        "description": "Retorno JSON para agendamento de visitas de captação de imóvel do imoview CRM",
        "operationId": "ImovelRetornarHorariosVisitasDisponiveisCaptacao",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "codigoimovel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "OBRIGATÓRIO - Enviar o código do imóvel existente no imoview CRM"
                    },
                    "data": {
                      "type": "string",
                      "format": "string",
                      "example": "OBRIGATÓRIO - Enviar a data referência para agendamento, formato dd/mm/yyyy"
                    },
                    "codigounidade": {
                      "type": "string",
                      "format": "string",
                      "example": "OPCIONAL - Enviar código da unidade ou será assumido a unidade do imóvel"
                    }
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "horarios": {
                      "type": "array",
                      "items": {}
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/App_PesquisarCidade": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de cidades do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de cidades do imoview CRM para pesquisa (autocomplete) em APP/Site (máximo 100 registros)",
        "operationId": "ImovelApp_PesquisarCidade",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Imovel/App_PesquisarBairro": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de bairros do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de bairros do imoview CRM para pesquisa (autocomplete) em APP/Site (máximo 100 registros)",
        "operationId": "ImovelApp_PesquisarBairro",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCidade",
            "in": "query",
            "description": "Enviar os códigos das cidades separados por vírgula (,) ou vazio para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoRegiao",
            "in": "query",
            "description": "Enviar os códigos das regiões separados por vírgula (,) ou vazio para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoSubRegiao",
            "in": "query",
            "description": "Enviar os códigos das sub-regiões separados por vírgula (,) ou vazio para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Imovel/App_PesquisarRegiao": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de regiões do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de bairros do imoview CRM para pesquisa (autocomplete) em APP/Site (máximo 100 registros)",
        "operationId": "ImovelApp_PesquisarRegiao",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCidade",
            "in": "query",
            "description": "Enviar os códigos das cidades separados por vírgula (,) ou vazio para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Imovel/App_PesquisarSubRegiao": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de sub-regiões do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de bairros do imoview CRM para pesquisa (autocomplete) em APP/Site (máximo 100 registros)",
        "operationId": "ImovelApp_PesquisarSubRegiao",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCidade",
            "in": "query",
            "description": "Enviar os códigos das cidades separados por vírgula (,) ou vazio para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoRegiao",
            "in": "query",
            "description": "Enviar os códigos das regiões separados por vírgula (,) ou vazio para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "regiao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Imovel/App_PesquisarCondominio": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de condomínios do Imoview CRM para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de condomínios do imoview CRM para pesquisa (autocomplete) em APP/Site (máximo 20 registros)",
        "operationId": "ImovelApp_PesquisarCondominio",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "codigo": {
                        "type": "integer",
                        "format": "int64",
                        "example": "int"
                      },
                      "nome": {
                        "type": "string",
                        "format": "string",
                        "example": "string"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Imovel/RetornarListaUnidades": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de unidades disponíveis para inclusão de imóvel no Imoview",
        "description": "Retorno JSON da lista de unidades disponíveis para inclusão de imóvel no imoview ADM",
        "operationId": "ImovelRetornarListaUnidades",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/App_RetornarUnidadesLancamento": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de unidades de lançamento",
        "description": "Retorno JSON lista de unidades de lançamento para área do cliente/APP do imoview CRM",
        "operationId": "ImovelApp_RetornarUnidadesLancamento",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel lançamento mãe",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Imovel/RetornarListaFinalidades": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de finalidades para inclusão de imóveis",
        "description": "Retorno JSON da lista de finalidades disponíveis para inclusão de imóvel no imoview ADM",
        "operationId": "ImovelRetornarListaFinalidades",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarListaDestinacoes": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de destinações para inclusão de imóveis",
        "description": "Retorno JSON da lista de destinações disponíveis para inclusão de imóvel no imoview ADM",
        "operationId": "ImovelRetornarListaDestinacoes",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarListaLocalChaves": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de locais de chaves para inclusão de imóveis",
        "description": "Retorno JSON da lista de local de chaves disponíveis para inclusão de imóvel no imoview ADM",
        "operationId": "ImovelRetornarListaLocalChaves",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarListaQuadros": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de quadros para inclusão de imóveis",
        "description": "Retorno JSON da lista de quadros disponíveis para inclusão de imóvel no imoview CRM",
        "operationId": "RetornarListaQuadros",
        "parameters": [

          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel e 2 para venda, 0 ambos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código da unidade",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "unidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "unidadecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "finalidadecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },

    "/Imovel/RetornarListaPosicoes": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de posições de um quadro para inclusão de imóveis",
        "description": "Retorno JSON da lista de posções de um quadro para inclusão de imóvel no imoview CRM",
        "operationId": "RetornarListaPosicoes",
        "parameters": [

          {
            "name": "codigoQuadro",
            "in": "query",
            "description": "Enviar código do quadro",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "semPosicao",
            "in": "query",
            "description": "Enviar true para somente posições sem chaveiro",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },

    "/Imovel/RetornarListaTiposChaves": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna a lista de tipos de chaves para inclusão de imóveis",
        "description": "Retorno JSON da lista de tipos de chaves para inclusão de imóvel no imoview CRM",
        "operationId": "RetornarListaTiposChaves",
        "parameters": [],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },



    "/Imovel/VerificarImovelPorEndereco": {
      "get": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Verifica se o imóvel já existe para um determinado endereço",
        "description": "Retorno JSON para verificar se um imóvel já existe no imoview",
        "operationId": "ImovelVerificarImovelPorEndereco",
        "parameters": [
          {
            "name": "finalidade",
            "in": "query",
            "description": "Enviar 1 para aluguel e 2 para venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "endereco",
            "in": "query",
            "description": "Enviar a rua do imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "numero",
            "in": "query",
            "description": "Enviar a número da rua do imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "bairro",
            "in": "query",
            "description": "Enviar o nome do bairro do imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "cidade",
            "in": "query",
            "description": "Enviar o nome da cidade do imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "estado",
            "in": "query",
            "description": "Enviar o estado do imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "cep",
            "in": "query",
            "description": "Enviar o CEP do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "complemento",
            "in": "query",
            "description": "Enviar o complemento do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "bloco",
            "in": "query",
            "description": "Enviar o bloco do imóvel",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "existe": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "codigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/IncluirImovel": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Inclui um imóvel no Imoview CRM",
        "description": "Retorno JSON para inclusão de imóvel no imoview ADM<br><br>        Tokens disponíveis:<br>codigoauxiliar: OPCIONAL - Código personalizado<br>codigousuario: OBRIGATÓRIO - Usuário do Imoview CRM<br>codigounidade: OBRIGATÓRIO - Enviar o código da unidade selecionada de acordo com a lista existente (RetornarListaUnidades)<br>finalidade: OBRIGATÓRIO - Enviar a finalidade selecionada de acordo com a lista existente (RetornarListaFinalidades)<br>destinacao: OBRIGATÓRIO - Enviar a destinação selecionada de acordo com a lista existente (RetornarListaDestinacoes)<br>codigotipo: OBRIGATÓRIO - Enviar o tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis)<br>codigotipo2: OPCIONAL - Enviar o 2º tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis)<br>codigocondominio: OPCIONAL - Enviar o condomínio selecionado de acordo com a lista existente (RetornarCondominiosDisponiveis)<br>localchave: OBRIGATÓRIO - Enviar a destinação selecionada de acordo com a lista existente (RetornarListaLocalChaves)<br>edificio: OPCIONAL - Enviar o nome do edifício se existir<br>construtora: OPCIONAL - Enviar o nome da construtora se existir<br>identificadorchave: OPCIONAL - Enviar o identificador de chaves<br>exclusivo: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>ocupado: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>alugado: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>placa: OPCIONAL - Enviar 1 (com placa), 2 (sem placa) ou 3 (não autorizado), caso contrato assumirá 2 (sem placa)<br>aceitafinanciamento: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>aceitapermuta: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>naplanta: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>valores {<br>valor: OBRIGATÓRIO - Enviar o valor de venda ou aluguel<br>valorcondominio: OPCIONAL - Enviar o valor do condomínio<br>valoriptu: OPCIONAL - Enviar o valor de IPTU<br>comissao: OPCIONAL - Enviar a comissão de venda ou taxa administração se for aluguel<br>}<br>areas {<br>areainterna: OBRIGATÓRIO - Enviar a área interna<br>areaexterna: OPCIONAL - Enviar a área externa<br>arealote: OPCIONAL - Enviar a área do terreno<br>}<br>endereco {<br>rua: OBRIGATÓRIO - Enviar o nome da rua<br>numero: OPCIONAL - Enviar o nº da rua<br>complemento: OPCIONAL - Enviar o complemento se existir<br>bairro: OBRIGATÓRIO - Enviar o nome do bairro<br>cidade: OBRIGATÓRIO - Enviar o nome da cidade<br>estado: OBRIGATÓRIO - Enviar a sigla do estado<br>bairro2: OPCIONAL - Enviar o nome do bairro 2º bairro<br>cidade2: OPCIONAL - Enviar o nome da cidade do 2º bairro<br>estado2: OPCIONAL - Enviar a sigla do estado do 2º bairro<br>bloco: OPCIONAL - Enviar o bloco se existir<br>pontoreferencia: OPCIONAL - Enviar o ponto de referência se existir<br>melhoracesso: OPCIONAL - Enviar o melhor acesso se existir<br>}<br>caracteristicasinterna {<br>numeroquartos: OPCIONAL - Enviar a quantidade de quartos<br>numerosalas: OPCIONAL - Enviar a quantidade de salas<br>numerobanhos: OPCIONAL - Enviar a quantidade de banheiros<br>numerosuites: OPCIONAL - Enviar a quantidade de suítes<br>numerovarandas: OPCIONAL - Enviar a quantidade de varandas<br>numeroandar: OPCIONAL - Enviar o nº do andar do imóvel<br>arcondicionado: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>areaservico: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>areaprivativa: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>armariobanheiro: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>armariocozinha: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>armarioquarto: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>box: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>closet: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>dce: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>despensa: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>escritorio: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>lavabo: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>mobiliado: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>rouparia: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>solmanha: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>vistamar: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>varandagourmet: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>}<br>caracteristicasexterna {<br>numerovagas: OPCIONAL - Enviar a quantidade de vagas de garagem<br>tipovagas: OPCIONAL - Enviar texto de complemento da vaga<br>numeroelevador: OPCIONAL - Enviar a quantidade de elevadores, se existir<br>numeroandares: OPCIONAL - Enviar a quantidade de andares, se existir<br>unidadesporandar: OPCIONAL - Enviar a quantidade de unidade por andar, se existir<br>aguaindividual: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>alarme: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>aquecedorgas: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>aquecedoreletrico: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>aquecedorsolar: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>boxdespejo: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>cercaeletrica: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>circuitotv: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>gascanalizado: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>interfone: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>jardim: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>lavanderia: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>portaoeletronico: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>portaria24horas: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>}<br>lazer {<br>academia: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>churrasqueira: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>hidromassagem: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>homecinema: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>piscina: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>playground: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>quadraesportiva: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>salamassagem: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>salaofestas: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>salaojogos: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>sauna: OPCIONAL - Enviar true ou false, caso contrato assumirá false<br>}<br>descricao: OBRIGATÓRIO - Enviar descrição das características do imóvel<br>anotacoes: OPCIONAL - Enviar anotações internas do imóvel<br>rlvideo: OPCIONAL - Enviar url de vídeo, se existir<br>urlpublica: OPCIONAL - Enviar url pública, se existir<br>proprietarios [{<br>codigo: OPCIONAL - Enviar o código do proprietário, se já existir o cadastro<br><br>nome: OBRIGATÓRIO - Enviar o nome do proprietário<br>cpfoucnpj: OBRIGATÓRIO - Enviar CPF ou CNPJ do proprietário<br>rgouinscricaoestadual: OPCIONAL - Enviar RG ou IE<br>telefone: OBRIGATÓRIO - Enviar telefone<br>email: OPCIONAL - Enviar e-mail<br>percentual: OBRIGATÓRIO - Enviar o % de participação no imóvel<br>}]<br>chaveiros [{<br>situacao: OBRIGATÓRIO - Enviar 1 - Ativo, 2 - Desativado<br>codigounidade: OBRIGATÓRIO - Enviar código da unidade<br>codigoposicao: OPCIONAL - Enviar O código da posição (/Imovel/RetornarListaPosicoes)<br>numerolacre: OPCIONAL - Enviar nº do lacre do chaveiro<br>chaves: [{<br/>codigotipo: OBRIGATÓRIO - Enviar o código do tipo (/Imovel/RetornarListaTiposChaves)<br>quantidade: OBRIGATÓRIO - Enviar quantidade de chave<br>observacao: OPCIONAL - Enviar alguma observação se houver<br>}]<br>redesassociado: OPCIONAL - Enviar o(s) código(s) das redes associado separado por vírgula para mais de uma rede<br>",
        "operationId": "ImovelIncluirImovel",
        "parameters": [
          {
            "name": "parametros",
            "in": "query",
            "description": "Enviar os parâmetros via JSON. Exemplo em Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "fotos": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Imóveis",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "codigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/RetornarPortaisImoveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Retorna os portais (anúncios) dos imóveis do Imoview CRM",
        "description": "Retorno JSON dos portais de cada imóvel do imoview CRM: situação, tipo de destaque, datas de envio, mensagem do último envio e código do imóvel no portal.<br><br>Informe <strong>codigosimoveis</strong> e/ou <strong>codigoportal</strong> - ao menos um dos dois é obrigatório.<br><strong>codigoportal = 0</strong> significa 'meu site', que não é um vínculo de portal: ele vem nos campos <strong>exibirmeusite</strong> e <strong>tipodestaquesite</strong> do imóvel (com codigoportal = 0 o array portais volta vazio).<br>Pesquisando por <strong>codigosimoveis</strong> (máximo 200 códigos), o retorno traz os portais em qualquer situação, sem paginação, e aceita também unidades de lançamento.<br>Pesquisando somente por <strong>codigoportal</strong>, a pesquisa é paginada, considera apenas imóveis com o portal <strong>ATIVO</strong> e as unidades de lançamento só entram enviando opcaoimovel = 3.<br><br>Tokens disponíveis:<br>codigosimoveis: OPCIONAL - Enviar os códigos dos imóveis separados por vírgula (,), máximo 200 - obrigatório se codigoportal não for enviado<br>codigoportal: OPCIONAL - Enviar o código do portal (0 = meu site) - obrigatório se codigosimoveis não for enviado<br>somenteportaisativos: OPCIONAL - Enviar true para retornar somente os portais com situação ativa, caso contrário assumirá false (retorna também os retirados)<br>codigounidade: OPCIONAL - Usado na pesquisa somente por portal. Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todas<br>finalidade: OPCIONAL - Usado na pesquisa somente por portal. Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todas<br>situacao: OPCIONAL - Usado na pesquisa somente por portal. Enviar 0 - Todos, 1 - Vago/Disponível, 2 - Alugado, 3 - Vendido, 4 - Em reforma, 5 - Em moderação, 6 - Desativado, 7 - Em desocupação<br>opcaoimovel: OPCIONAL - Usado na pesquisa somente por portal. Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 0 para avulsos e lançamentos mãe<br>numeropagina: OPCIONAL - Usado na pesquisa somente por portal (paginação), enviar o nº da página atual<br>numeroregistros: OPCIONAL - Usado na pesquisa somente por portal, nº de registros para retorno, máximo 200 (assume 20 se não enviado)",
        "operationId": "ImovelRetornarPortaisImoveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigosimoveis": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar os códigos dos imóveis separados por vírgula (,), máximo 200 - obrigatório se codigoportal não for enviado"
                  },
                  "codigoportal": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar o código do portal (0 = meu site) - obrigatório se codigosimoveis não for enviado"
                  },
                  "somenteportaisativos": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar true ou false, caso contrário assumirá false"
                  },
                  "codigounidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Usado na pesquisa somente por portal. Enviar código da unidade, para mais de uma unidade, separar por vírgula (,) ou vazio para todas"
                  },
                  "finalidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Usado na pesquisa somente por portal. Enviar 1 para ALUGUEL, 2 para VENDA ou 0 para todas"
                  },
                  "situacao": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Usado na pesquisa somente por portal. Enviar 0 - Todos, 1 - Vago/Disponível, 2 - Alugado, 3 - Vendido, 4 - Em reforma, 5 - Em moderação, 6 - Desativado, 7 - Em desocupação"
                  },
                  "opcaoimovel": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Usado na pesquisa somente por portal. Enviar 1 para somente avulsos, 2 para somente lançamentos, 3 para unidades de lançamentos, 0 para avulsos e lançamentos mãe"
                  },
                  "numeropagina": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Usado na pesquisa somente por portal (paginação), enviar o nº da página atual"
                  },
                  "numeroregistros": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Usado na pesquisa somente por portal, nº de registros para retorno, máximo 200 (assume 20 se não enviado)"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigoimovel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "exibirmeusite": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "codigotipodestaquesite": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int - 1 (simples), 2 (destaque), 3 (super destaque), 4 (premiere destaque especial), 5 (premiere destaque premium) ou 6 (triplo)"
                          },
                          "tipodestaquesite": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "portais": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigoportal": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomeportal": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigosituacao": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int - 1 (ativo) ou 2 (desativado/retirado do portal)"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigotipodestaque": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int - 1 (simples), 2 (destaque), 3 (super destaque), 4 (premiere destaque especial), 5 (premiere destaque premium) ou 6 (triplo)"
                                },
                                "tipodestaque": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigosituacaoproximoenvio": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int - 1 (enviar para portal), 2 (retirar do portal) ou 0 (sem envio pendente)"
                                },
                                "situacaoproximoenvio": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "dataprimeiroenvio": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string - formato dd/mm/yyyy hh:mm:ss ou vazio"
                                },
                                "dataultimoenvio": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string - formato dd/mm/yyyy hh:mm:ss ou vazio"
                                },
                                "mensagemultimoenvio": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigoimovelnoportal": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int - código do anúncio no portal ou 0 se ainda não foi enviado"
                                },
                                "quantidadediaspublicacao": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Imovel/AlterarPortaisImoveis": {
      "post": {
        "tags": [
          "Imóveis"
        ],
        "summary": "Inclui, altera ou remove portais (anúncios) em imóveis do Imoview CRM",
        "description": "Retorno JSON para incluir/alterar (ou remover) o anúncio de imóveis em portais do imoview CRM. Aceita lote nos dois níveis - vários imóveis e vários portais por imóvel - sendo um imóvel com um portal o caso particular.<br><br><strong>codigoportal = 0</strong> significa 'meu site' (marca/desmarca 'Exibir meu site' e o destaque do site).<br><strong>tipodestaque</strong> não informado mantém o destaque atual do anúncio (assume 1 - simples quando o imóvel ainda não está no portal).<br>Um erro em um item <strong>não interrompe o lote</strong>: o retorno é sempre 200 com o resultado de cada imóvel/portal em <strong>lista</strong> (sucesso e mensagem). O portal precisa estar habilitado para o convênio na inclusão/alteração (na remoção não).<br><br>Tokens disponíveis:<br>codigousuario: OPCIONAL - Enviar o usuário do Imoview CRM, que precisa ter a autoridade 'Gerenciar imóveis em portais'. Não enviando, a alteração é auditada no usuário robô<br>imoveis [{ OBRIGATÓRIO - Enviar ao menos um imóvel, máximo 100<br>codigoimovel: OBRIGATÓRIO - Enviar o código do imóvel<br>portais [{ OBRIGATÓRIO - Enviar ao menos um portal (o mesmo portal não pode ser repetido para o mesmo imóvel)<br>codigoportal: OBRIGATÓRIO - Enviar o código do portal habilitado no convênio ou 0 para meu site<br>tipodestaque: OPCIONAL - Enviar 1 (simples), 2 (destaque), 3 (super destaque), 4 (premiere destaque especial), 5 (premiere destaque premium) ou 6 (triplo). Não enviando, mantém o destaque atual do anúncio<br>remover: OPCIONAL - Enviar true para retirar o imóvel do portal, caso contrário assumirá false (inclui/altera)<br>}]<br>}]",
        "operationId": "ImovelAlterarPortaisImoveis",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigousuario": {
                    "type": "integer",
                    "format": "Int64",
                    "example": 10
                  },
                  "imoveis": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "codigoimovel": {
                          "type": "integer",
                          "format": "Int64",
                          "example": 1234
                        },
                        "portais": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigoportal": {
                                "type": "integer",
                                "format": "Int64",
                                "example": 1
                              },
                              "tipodestaque": {
                                "type": "integer",
                                "format": "Int64",
                                "example": 2
                              },
                              "remover": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": false
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidadesucesso": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "quantidadeerro": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigoimovel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoportal": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeportal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "sucesso": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "mensagem": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Sindico/App_RetornarImoveis": {
      "get": {
        "tags": [
          "Sindico"
        ],
        "summary": "Retorna a lista de imóveis do síndico na Área do Cliente/APP",
        "description": "Retorno JSON da lista de imóveis do síndico na área do cliente/APP do imoview ADM",
        "operationId": "SindicoApp_RetornarImoveis",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipoimovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "fotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "Proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "cpfcnpj": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Lead/IncluirLead": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Inclui um lead captado no Imoview",
        "description": "Retorno JSON para incluir lead captado no imoview ADM",
        "operationId": "LeadIncluirLead",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LeadIncluir"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/IncluirAgendamentoVisita": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Inclui um agendamento de visita para um lead captado no Imoview",
        "description": "Retorno JSON para incluir agendamento de visita no imoview CRM",
        "operationId": "Lead/IncluirAgendamentoVisita",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "nome": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO - Enviar o nome do lead preenchido no formulário"
                  },
                  "telefone": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar o telefone do lead, OBRIGATÓRIO se não tiver e-mail"
                  },
                  "email": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar o e-mail do lead, OBRIGATÓRIO se não tiver telefone"
                  },
                  "midia": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO - Enviar nome da mídia de captação"
                  },
                  "finalidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA, outro valor assume VENDA"
                  },
                  "codigounidade": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar código da unidade ou será assumido a unidade do imóvel"
                  },
                  "codigoimovel": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar código do imóvel para direcionar o atendimento e perfil da procura"
                  },
                  "campanha": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar nome da campanha"
                  },
                  "utm": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar parâmetros Google"
                  },
                  "anotacoes": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - Enviar texto informado pelo lead"
                  },
                  "emailcorretor": {
                    "type": "string",
                    "format": "string",
                    "example": "OPCIONAL - E-mail do corretor/MQL para envio direto de atendimento, sem fila"
                  },
                  "datahoraagendamentovisita": {
                    "type": "string",
                    "format": "string",
                    "example": "OBRIGATÓRIO - Data/hora do agendamento, formato dd/mm/yyyy hh:mm, listar horários disponíveis em Imovel/RetornarHorariosVisitasDisponiveis"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/IntegrarLeadRdStation": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Retorno para incluir lead via RD Station",
        "description": "Retorno JSON integração de leads RD Station x imoview CRM",
        "operationId": "LeadIntegrarLeadRdStation",
        "parameters": [
          {
            "name": "codigoConvenio",
            "in": "query",
            "description": "Código do convênio na Universal",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "value",
            "in": "query",
            "description": "Json enviado pelo RD Station",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "object",
              "format": "string"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Informe 1-Aluguel ou 2-Venda (Caso não tenha no JSON da RD Station, assume Venda se não informado)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código da unidade na Universal (Caso não tenha no JSON da RD Station)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel (Caso não tenha no JSON da RD Station)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/IncluirLeadZap": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Retorno para incluir lead via ZAP",
        "description": "Retorno JSON integração de leads ZAP/VIVA REAL x imoview CRM",
        "operationId": "LeadIncluirLeadZap",
        "parameters": [
          {
            "name": "codigoConvenio",
            "in": "query",
            "description": "Código do convênio na Universal",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "value",
            "in": "query",
            "description": "Json enviado pelo ZAP",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "object",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/IncluirLeadOlx": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Retorno para incluir lead via OLX",
        "description": "Retorno JSON integração de leads OLX x imoview CRM",
        "operationId": "LeadIncluirLeadOlx",
        "parameters": [
          {
            "name": "codigoConvenio",
            "in": "query",
            "description": "Código do convênio na Universal",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "value",
            "in": "query",
            "description": "Json enviado pelo OLX",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "object",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/IncluirLeadImovelWeb": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Retorno para incluir lead via ImovelWeb",
        "description": "Retorno JSON integração de leads IMÓVEL WEB x imoview CRM",
        "operationId": "LeadIncluirLeadImovelWeb",
        "parameters": [
          {
            "name": "codigoConvenio",
            "in": "query",
            "description": "Código do convênio na Universal",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "value",
            "in": "query",
            "description": "Json enviado pelo IMÓVEL WEB",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "object",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/App_RetornarAtendimentos": {
      "get": {
        "tags": [
          "Leads"
        ],
        "summary": "Retorno a lista dde atendimentos para pesquisa em APP/Site",
        "description": "Retorno JSON da lista de atendimentos do imoview CRM para pesquisa em APP/Site",
        "operationId": "LeadApp_RetornarAtendimentos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Informe o código do cliente",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Leads",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "corretor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigolead": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomelead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefonelead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "emaillead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraentradalead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahorainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimainteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahorarepique": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora1Resposta": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataprevisaofechamento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datafechamento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fasecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "fasenome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "funil": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "funilcodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumoPerfil": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "corinteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diasseminteracao": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "coratividade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/IncluirLeadCaptacao": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Retorno para incluir lead de captação",
        "description": "Retorno JSON para incluir lead para captação de imóvel no imoview ADM",
        "operationId": "LeadIncluirLeadCaptacao",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LeadIncluir"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Leads",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Lead/IncluirAgendamentoVisitaCaptacao": {
      "post": {
        "tags": [
          "Leads"
        ],
        "summary": "Retorno para incluir agendamento de visita para um lead de captação",
        "description": "Retorno JSON para incluir lead de captação de imóvel no imoview CRM",
        "operationId": "Lead/IncluirAgendamentoVisitaCaptacao",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LeadIncluirCaptacao"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Leads",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Atendimento/RetornarAtendimentos": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna a lista de atendimentos",
        "description": "Retorno JSON lista de atendimento do imoview CRM",
        "operationId": "AtendimentoRetornarAtendimentos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Informe 1-Aluguel ou 2-Venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situacao",
            "in": "query",
            "description": "Informe 1-Em atendimento, 2-Descartado, 3-Negócio ou 0 para todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "fase",
            "in": "query",
            "description": "Informe 1-Pré-atendimento, 2-Seleção perfil, 3-Seleção imóveis (somente atendimento), 4-Visita (somente atendimento), 5-Proposta ou checklist (captação), 6-Negócio ou captação realizada (captação), 7 - Lead qualificado, 8-Agendamento - OPCIONAL se codigoCliente for informado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código do unidade",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCorretor",
            "in": "query",
            "description": "Código do corretor",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoMql",
            "in": "query",
            "description": "Código do Mql - Módulo Y",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoMidia",
            "in": "query",
            "description": "Código da mídia",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoTipo",
            "in": "query",
            "description": "Código do tipo do atendimento",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataInicial",
            "in": "query",
            "description": "Data inicial no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataFinal",
            "in": "query",
            "description": "Data final no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "opcaoAtendimento",
            "in": "query",
            "description": "1 - Atendimento (default) | 2 - Captação",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataHoraInicialUltimaAlteracao",
            "in": "query",
            "description": "Data/hora inicial da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraFinalUltimaAlteracao",
            "in": "query",
            "description": "Data/hora final da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retorno das informações contidas nos atendimentos feita com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "finalidade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "funil": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "unidadecodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "unidadenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "midia": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "campanha": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "utm": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "termometro": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraentradalead": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahorainclusao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimaalteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahorarepique": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahora1Resposta": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "dataprevisaofechamento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datafechamento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "leadqualificado": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "mql": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "mqlcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "corretor": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "corretorcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lead": {
                      "type": "object",
                      "properties": {
                        "codigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "nome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "email": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "telefone1": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "telefone2": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "sexo": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "datanascimento": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "profissao": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "rendamensal": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "rendafamilia": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "valorfgts": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "valorentrada": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        }
                      }
                    },
                    "perfil": {
                      "type": "object",
                      "properties": {
                        "tiposimoveis": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "cidades": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "bairros": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "regioes": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "numeroquarto": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numerobanheiro": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numerosuite": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numerovaga": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numeroelevador": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "valorde": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "valorate": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "areainternade": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "areainternaate": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "arealotede": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "arealoteate": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "idadeate": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "unidadeporandar": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "tipolancamento": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "edificio": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "endereco": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "endereconumero": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "enderecotipocomplemento": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "enderecocomplemento": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "aceitafinanciamento": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "aceitapermuta": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "areaprivativa": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "varanda": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "areaservico": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "boxbanheiro": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "interfone": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "portaria24hrs": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "piscina": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "playground": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "salaofestas": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "quadratenis": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "mobiliado": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "armarioquarto": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "armariocozinha": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "boxdespejo": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "destinacaocodigo": {
                          "type": "integer",
                          "format": "int64",
                          "example": "int"
                        },
                        "destinacaonome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "avulsolancamento": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "statusobra": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "inicioobra": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "terminoobra": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "imoveiscarrinho": {
                          "type": "array",
                          "items": {}
                        },
                        "imoveisvisita": {
                          "type": "array",
                          "items": {}
                        },
                        "imoveisproposta": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigoproposta": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "negociacoes": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "situacaonegociacao": {
                                      "type": "integer",
                                      "format": "Int64",
                                      "example": "int"
                                    },
                                    "datanegociacao": {
                                      "type": "string",
                                      "format": "string",
                                      "example": "string"
                                    },
                                    "valorproposta": {
                                      "type": "number",
                                      "format": "number",
                                      "example": "double"
                                    }
                                  }
                                }
                              }
                            }
                          }
                        },
                        "imoveisnegocio": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigonegocio": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "situacaonegocio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datanegocio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valornegocio": {
                                "type": "number",
                                "format": "number",
                                "example": "double"
                              },
                              "valorcomissao": {
                                "type": "number",
                                "format": "number",
                                "example": "double"
                              },
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "titulo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "finalidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "situacao": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "areaprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorcondominio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valoriptu": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bairro": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "cidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "estado": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "endereco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numero": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "complemento": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bloco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "edificio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroquartos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerobanhos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerovagas": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerosuites": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "interacoes": {
                      "type": "object",
                      "properties": {
                        "datahora": {
                          "type": "integer",
                          "format": "int64",
                          "example": "int"
                        },
                        "tipo": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "titulo": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "texto": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "usuario": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Não foi localizado nenhum atendimento.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarAtendimentos": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna a lista de atendimentos para APP/Área do Cliente",
        "description": "Retorno JSON da lista de atendimentos na área do cliente/APP do imoview ADM",
        "operationId": "AtendimentoApp_RetornarAtendimentos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Informe 1-Aluguel ou 2-Venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "fase",
            "in": "query",
            "description": "Informe 1-Pré-atendimento, 2-Seleção perfil, 3-Seleção imóveis (somente atendimento), 4-Visita (somente atendimento), 5-Proposta ou checklist (captação), 6-Negócio ou captação realizada (captação), 7 - Lead qualificado, 8-Agendamento - OPCIONAL se codigoCliente for informado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código do unidade",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoEquipe",
            "in": "query",
            "description": "Equipe enviada em App_ValidarAcesso, ou 0 para assumir todas equipes permitidas para o usuário autenticado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCorretor",
            "in": "query",
            "description": "Código do corretor",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome, telefone ou e-mail do lead",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "opcaoAtendimento",
            "in": "query",
            "description": "1 - Atendimento (default) | 2 - Captação",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situacao",
            "in": "query",
            "description": "1 - Em antendimento (default) | 2 - Descartado | 3 - Negócio realizado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataInicial",
            "in": "query",
            "description": "Data inicial no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataFinal",
            "in": "query",
            "description": "Data final no formato (dd/MM/yyyy)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "corretor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "nomelead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefonelead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "emaillead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahorainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimainteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fasecodigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "fasenome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "corinteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diasseminteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "coratividade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarAtendimentosDescartados": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna a lista de atendimentos descartados para APP/Área do Cliente",
        "description": "Retorno JSON da lista de atendimentos descartados na área do cliente/APP do imoview ADM",
        "operationId": "AtendimentoApp_RetornarAtendimentosDescartados",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 20",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "finalidade",
            "in": "query",
            "description": "Informe 1-Aluguel ou 2-Venda",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUnidade",
            "in": "query",
            "description": "Código do unidade",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoEquipe",
            "in": "query",
            "description": "Equipe enviada em App_ValidarAcesso, ou 0 para assumir todas equipes permitidas para o usuário autenticado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCorretor",
            "in": "query",
            "description": "Código do corretor",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "Informe o nome, telefone ou e-mail do lead",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "corretor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigolead": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomelead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefonelead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "emaillead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraentradalead": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahorainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimainteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahorarepique": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahora1Resposta": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "dataprevisaofechamento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoradescarte": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "motivodescarte": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fasecodigo": {
                            "type": "integer",
                            "format": "int64",
                            "example": "int"
                          },
                          "fasenome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "funil": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "funilcodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumoPerfil": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "corinteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diasseminteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "coratividade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_DetalhesAtendimentos": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna a lista de detalhes do atendimento para APP/Área do Cliente",
        "description": "Retorno JSON detalhes do atendimento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_DetalhesAtendimentos",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "finalidade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "situacao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "funil": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "funilcodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "unidadecodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "unidadenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipocodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "tiponome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "midiacodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "midianome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "campanha": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "utm": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "termometrocodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "termometronome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraentradalead": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahorainclusao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimainteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahorarepique": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahora1Resposta": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "dataprevisaofechamento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datafechamento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "quantidadeimoveisencontrados": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "leadqualificado": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "lead": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "tipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cpfcnpj": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "documentotipocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "documentonumero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "documentodataemissao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "emailtipocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "emailtiponome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "email": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone1tipocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "telefone1tiponome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone1": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone2tipocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "telefone2tiponome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "telefone2": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "sexocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "sexonome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "conjugecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "conjugenome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datanascimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "profissaocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "profissaonome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "rendamensal": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "rendafamilia": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "valorfgts": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "valorentrada": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "enderecotipocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "enderecotiponome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereconumero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "enderecocomplemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "enderecobairrocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "enderecobairronome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "enderecocidadenome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "enderecoestado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "enderecocep": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "mql": {
                      "type": "object",
                      "properties": {
                        "codigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "nome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        }
                      }
                    },
                    "corretor": {
                      "type": "object",
                      "properties": {
                        "codigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "nome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        }
                      }
                    },
                    "perfil": {
                      "type": "object",
                      "properties": {
                        "tiposimoveis": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "cidades": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "bairros": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "regioes": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "subregioes": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "extras": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "numeroquarto": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numerobanheiro": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numerosuite": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numerovaga": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "numeroelevador": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "valorde": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "valorate": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "areainternade": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "areainternaate": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "arealotede": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "arealoteate": {
                          "type": "number",
                          "format": "number",
                          "example": "double"
                        },
                        "idadeate": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "unidadeporandar": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "tipolancamentocodigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "tipolancamentonome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "edificio": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "endereco": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "endereconumero": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "enderecotipocomplementocodigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "enderecotipocomplementonome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "enderecocomplemento": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "aceitafinanciamento": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "aceitapermuta": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "areaprivativa": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "varanda": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "areaservico": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "boxbanheiro": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "interfone": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "portaria24hrs": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "piscina": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "playground": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "salaofestas": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "quadratenis": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "mobiliado": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "armarioquarto": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "armariocozinha": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "boxdespejo": {
                          "type": "boolean",
                          "format": "boolean",
                          "example": "bool"
                        },
                        "destinacaocodigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "destinacaonome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "avulsolancamentocodigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "avulsolancamentonome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "statusobracodigo": {
                          "type": "integer",
                          "format": "Int64",
                          "example": "int"
                        },
                        "statusobranome": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "inicioobra": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "terminoobra": {
                          "type": "string",
                          "format": "string",
                          "example": "string"
                        },
                        "imoveiscarrinho": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "titulo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "empreendimento": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "finalidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "situacao": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "areaprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorcondominio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valoriptu": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bairro": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "cidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "estado": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "endereco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numero": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "complemento": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bloco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "edificio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroquartos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerobanhos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerovagas": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerosuites": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "latitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "longitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalm": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalpp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "temproposta": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "temreserva": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "datareserva": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "imoveisvisita": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigovisita": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "datavisita": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipovisitacodigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "tipovisitanome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "situacaovisita": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "parecercodigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "parecernome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "parecermotivocodigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "parecermotivonome": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "parecermotivocomplemento": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "titulo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "empreendimento": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "finalidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "situacao": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "areaprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorcondominio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valoriptu": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bairro": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "cidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "estado": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "endereco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numero": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "complemento": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bloco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "edificio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroquartos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerobanhos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerovagas": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerosuites": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "latitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "longitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalm": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalpp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "temproposta": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "temreserva": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "datareserva": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "imoveisproposta": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigoproposta": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "negociacoes": {
                                "type": "array",
                                "items": {
                                  "type": "object",
                                  "properties": {
                                    "situacaonegociacao": {
                                      "type": "integer",
                                      "format": "Int64",
                                      "example": "int"
                                    },
                                    "datanegociacao": {
                                      "type": "string",
                                      "format": "string",
                                      "example": "string"
                                    },
                                    "valorproposta": {
                                      "type": "number",
                                      "format": "number",
                                      "example": "double"
                                    }
                                  }
                                }
                              },
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "titulo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "empreendimento": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "finalidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "situacao": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "areaprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorcondominio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valoriptu": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bairro": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "cidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "estado": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "endereco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numero": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "complemento": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bloco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "edificio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroquartos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerobanhos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerovagas": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerosuites": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "latitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "longitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalm": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalpp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "temproposta": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "temreserva": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "datareserva": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        },
                        "imoveisnegocio": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "codigonegocio": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "situacaonegocio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "datanegocio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valornegocio": {
                                "type": "number",
                                "format": "number",
                                "example": "double"
                              },
                              "valorcomissao": {
                                "type": "number",
                                "format": "number",
                                "example": "double"
                              },
                              "codigo": {
                                "type": "integer",
                                "format": "Int64",
                                "example": "int"
                              },
                              "titulo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "empreendimento": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "finalidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "situacao": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "tipo": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valor": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "areaprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valorcondominio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "valoriptu": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bairro": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "cidade": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "estado": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "endereco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numero": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "complemento": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "bloco": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "edificio": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numeroquartos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerobanhos": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerovagas": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "numerosuites": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "latitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "longitude": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipal": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalm": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "urlfotoprincipalpp": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              },
                              "temproposta": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "temreserva": {
                                "type": "boolean",
                                "format": "boolean",
                                "example": "bool"
                              },
                              "datareserva": {
                                "type": "string",
                                "format": "string",
                                "example": "string"
                              }
                            }
                          }
                        }
                      }
                    },
                    "interacoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datahora": {
                            "type": "integer",
                            "format": "string",
                            "example": "string"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "texto": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "usuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "icone": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarImoveisEncontrados": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna a lista de imóveis encontrados dos atendimentos para APP/Área do Cliente",
        "description": "Retorno JSON lista de imóveis encontrados do atendimento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_RetornarImoveisEncontrados",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "datareserva": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarListasAuxiliares": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna a lista de tabelas auxiliares para alteração de atendimento para APP/Área do Cliente",
        "description": "Retorno JSON lista de tabelas auxiliares para alteração de atendimento na área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_RetornarListasAuxiliares",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "tipostelefone": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposemail": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposatendimento": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposimoveis": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposendereco": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposcomplemento": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposatividade": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposdocumentospf": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "tiposdocumentospj": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "motivosDescarte": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "motivosParecerGostou": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "motivosParecerNaoGostou": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "profissoes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "midias": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "termometros": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "sexos": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "extras": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirAtendimento": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui um atendimento",
        "description": "Retorno JSON para inclusão de atendimento para área do cliente/APP do imoview CRM ",
        "operationId": "AtendimentoApp_IncluirAtendimento",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonAtendimento",
            "in": "query",
            "description": "Dados via JSON. Exemplo no Schema",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_SalvarAtendimento": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Salva as informações de um atendimento",
        "description": "Retorno JSON para salvar informações do atendimento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_SalvarAtendimento",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonAtendimento",
            "in": "query",
            "description": "Dados via JSON. Exemplo no Schema",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirImovelCarrinho": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui um imóvel no carrinho do atendimento",
        "description": "Retorno JSON para inclusão de imóvel no carrinho do atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirImovelCarrinho",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel, use vírgula (,) para enviar mais de um imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_ExcluirImovelCarrinho": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Exclui um imóvel no carrinho do atendimento",
        "description": "Retorno JSON para exclusão de imóvel no carrinho do atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_ExcluirImovelCarrinho",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel, use vírgula (,) para enviar mais de um imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirImovelAgendamentoVisita": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui um agendamento de visita no imóvel do atendimento",
        "description": "Retorno JSON para inclusão de agendamento de visita imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirImovelAgendamentoVisita",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel, use vírgula (,) para enviar mais de um imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraAgendamento",
            "in": "query",
            "description": "Data/hora do agendamento do imóvel, formato (dd/mm/aaaa hh:mm)",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoCorretor",
            "in": "query",
            "description": "Código corretor para quem usa o módulo Y",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirImovelVisita": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui uma visita no imóvel do atendimento",
        "description": "Retorno JSON para inclusão de visita imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirImovelVisita",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel, use vírgula (,) para enviar mais de um imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_AlterarImovelVisita": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Altera uma visita no imóvel do atendimento",
        "description": "Retorno JSON para alterar visita imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_AlterarImovelVisita",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonVisita",
            "in": "query",
            "description": "Dados via JSON. Exemplo nos Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_ExcluirImovelVisita": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Exclui uma visita no imóvel do atendimento",
        "description": "Retorno JSON para exclusão de visita imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_ExcluirImovelVisita",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoVisita",
            "in": "query",
            "description": "Código do visita, use vírgula (,) para enviar mais de uma visita",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirImovelEmprestimoChave": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui um empréstimo de chaves no imóvel do atendimento",
        "description": "Retorno JSON para incluir empréstimo de chaves imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirImovelEmprestimoChave",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonEmprestimo",
            "in": "query",
            "description": "Dados via JSON. Exemplo nos Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          },
          {
            "name": "codigoimovel",
            "in": "query",
            "description": "Enviar os códigos dos imóveis separados por vírgula (,) ou vazio para todos",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_AlterarImovelEmprestimoChave": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Altera um empréstimo de chaves no imóvel do atendimento",
        "description": "Retorno JSON para alterar empréstimo de chaves imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_AlterarImovelEmprestimoChave",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonEmprestimo",
            "in": "query",
            "description": "Dados via JSON. Exemplo nos Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_SalvarParecerVisita": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Salva um parecer de visita no imóvel do atendimento",
        "description": "Retorno JSON para parecer de visita imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_SalvarParecerVisita",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonVisita",
            "in": "query",
            "description": "Dados via JSON. Exemplo nos Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirImovelProposta": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui uma proposta no imóvel do atendimento",
        "description": "Retorno JSON para incluir proposta de imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirImovelProposta",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonProposta",
            "in": "query",
            "description": "Dados via JSON exemplo: {'codigovisita':1050, 'valorproposta':'125000.00', 'descricao':'R$ 100.000,00 a vista + prestação de R$ 1.500,00', 'codigoimovelunidade':0}",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirNegociacaoImovelProposta": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui uma negociação de proposta no imóvel do atendimento",
        "description": "Retorno JSON para incluir negociação na proposta de imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirNegociacaoImovelProposta",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonProposta",
            "in": "query",
            "description": "Dados via JSON exemplo: {'codigovisita':1050, 'valorproposta':'125000.00', 'descricao':'R$ 100.000,00 a vista + prestação de R$ 1.500,00', 'codigoimovelunidade':0}",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirReservaImovelProposta": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui uma reserva no imóvel do atendimento",
        "description": "Retorno JSON para incluir reserva na proposta de imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirReservaImovelProposta",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonProposta",
            "in": "query",
            "description": "Dados via JSON. Exemplo nos Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_CancelarImovelProposta": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Cancela uma reserva ou proposta no imóvel do atendimento",
        "description": "Retorno JSON para cancelar uma proposta/reserva de imóvel no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_CancelarImovelProposta",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonProposta",
            "in": "query",
            "description": "Dados via JSON",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_DescartarAtendimento": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Descarta um atendimento",
        "description": "Retorno JSON para descartar atendimento no APP do imoview ADM",
        "operationId": "AtendimentoApp_DescartarAtendimento",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoMotivo",
            "in": "query",
            "description": "Código do motivo",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "complementoMotivo",
            "in": "query",
            "description": "Complemento do motivo",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarImoveisCarrinho": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna uma lista de imóveis no carrinho do atendimento",
        "description": "Retorno JSON lista de imóveis no carrinho do atendimento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_RetornarImoveisCarrinho",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Atendimento",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "datareserva": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },

                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }


                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarImoveisVisita": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna uma lista de visita/empréstimo no carrinho do atendimento",
        "description": "Retorno JSON lista de imóveis na visita/empréstimo do atendimento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_RetornarImoveisVisita",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigovisita": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datavisita": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipovisitacodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "tipovisitanome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacaovisita": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "parecercodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "parecernome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "parecermotivocodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "parecermotivonome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "parecermotivocomplemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "datareserva": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },

                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }

                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarImoveisProposta": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna uma lista de imóveis em proposta no atendimento",
        "description": "Retorno JSON lista de imóveis em proposta do atendimento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_RetornarImoveisProposta",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigoproposta": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "negociacoes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "situacaonegociacao": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "datanegociacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valorproposta": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                }
                              }
                            }
                          },
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "datareserva": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarImoveisNegocio": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna uma lista negócios de imóveis no atendimento",
        "description": "Retorno JSON lista de imóveis negócio do atendimento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_RetornarImoveisNegocio",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigonegocio": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "situacaonegocio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datanegocio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valornegocio": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "valorcomissao": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "titulo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "empreendimento": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "finalidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "areaprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valorcondominio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valoriptu": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bairro": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "estado": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "endereco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numero": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "complemento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bloco": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "edificio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numeroquartos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerobanhos": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerovagas": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerosuites": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "latitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "longitude": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipal": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalm": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "urlfotoprincipalpp": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "temproposta": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "temreserva": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "datareserva": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ehimovelrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redecaptador": {
                            "type": "object",
                            "properties": {
                              "codigorede": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nomerede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoassociado": {
                                "type": "integer",
                                "format": "Int32",
                                "example": "int"
                              },
                              "nome": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "email": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "telefone": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "urllogo": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              },
                              "codigoimovelnarede": {
                                "type": "string",
                                "format": "String",
                                "example": "string"
                              }
                            }
                          },

                          "ehimovelcaptadorrede": {
                            "type": "boolean",
                            "format": "Boolean",
                            "example": "true"
                          },

                          "redes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigorede": {
                                  "type": "integer",
                                  "format": "Int32",
                                  "example": "int"
                                },
                                "nomerede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "codigoimovelnarede": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahorainclusao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                },
                                "datahoraalteracao": {
                                  "type": "string",
                                  "format": "String",
                                  "example": "string"
                                }

                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_RetornarUrlCompartilhamento": {
      "get": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Retorna uma url de compartilhamento",
        "description": "Retorno JSON url de compartilhamento para área do cliente/APP do imoview CRM",
        "operationId": "AtendimentoApp_RetornarUrlCompartilhamento",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel, use vírgula (,) para enviar mais de um imóvel",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "url": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirInteracao": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui uma interação no atendimento",
        "description": "Retorno JSON para inclusão de interação no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirInteracao",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "descricao",
            "in": "query",
            "description": "Descrição da interação",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "datahora": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "titulo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "texto": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "usuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cor": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "icone": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_IncluirAtividade": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Inclui uma atividade no atendimento",
        "description": "Retorno JSON para inclusão de atividade no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_IncluirAtividade",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonAtividade",
            "in": "query",
            "description": "Dados via JSON",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "object",
              "properties": {
                "codigotipo": {
                  "type": "integer",
                  "format": "int64",
                  "example": "OBRIGATÓRIO - Enviar código do tipo (lista de tipos de atividades em App_RetornarListasAuxiliares)"
                },
                "titulo": {
                  "type": "string",
                  "format": "string",
                  "example": "OBRIGATÓRIO - Enviar título da atividade"
                },
                "datahorainicio": {
                  "type": "string",
                  "format": "string",
                  "example": "OBRIGATÓRIO - Enviar data/hora início, formato dd/mm/yyyy hh:mm"
                },
                "datahorafim": {
                  "type": "string",
                  "format": "string",
                  "example": "OPCIONAL - Enviar data/hora fim ou vazio para assumir 1 hora"
                },
                "nota": {
                  "type": "string",
                  "format": "string",
                  "example": "OBRIGATÓRIO - Enviar texto da atividade"
                },
                "codigousuarioatribuido": {
                  "type": "integer",
                  "format": "int64",
                  "example": "OBRIGATÓRIO - Enviar código do usuário dono da atividade (lista de usuários em Usuario/App_RetornarUsuarios)"
                },
                "codigousuarioconvidado": {
                  "type": "integer",
                  "format": "int64",
                  "example": "OPCIONAL - Enviar código de outros usuário convidados, separados por vírgula (,) (lista de usuários em Usuario/App_RetornarUsuarios)"
                },
                "notificarsistema": {
                  "type": "boolean",
                  "format": "boolean",
                  "example": "OPCIONAL - Enviar true para usuário ser notificado dentro do sistema"
                },
                "notificaremail": {
                  "type": "boolean",
                  "format": "boolean",
                  "example": "OPCIONAL - Enviar true para usuário ser notificado via e-mail"
                },
                "tipotemponotificacao": {
                  "type": "integer",
                  "format": "int64",
                  "example": "OPCIONAL - Enviar 1 (minuto), 2 (hora) ou 3 (dia) para usuário ser notificado"
                },
                "temponotificacao": {
                  "type": "integer",
                  "format": "int64",
                  "example": "OPCIONAL - Enviar o nº de mineuto/hora/dia da notificação"
                }
              }
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "datahora": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "titulo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "texto": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "usuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cor": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "icone": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_AlterarCorretor": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Altera corretor no atendimento",
        "description": "Retorno JSON para alteração de corretor no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_AlterarCorretor",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoNovoCorretor",
            "in": "query",
            "description": "Código do novo usuário corretor",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoNovaUnidade",
            "in": "query",
            "description": "Código da nova unidade, opcional, deixar 0 para não alterar",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "motivo",
            "in": "query",
            "description": "Motivo, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_AlterarMQL": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Altera MQL no atendimento",
        "description": "Retorno JSON para alteração de MQL no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_AlterarMQL",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoNovoMQL",
            "in": "query",
            "description": "Código do novo usuário MQL",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoNovaUnidade",
            "in": "query",
            "description": "Código da nova unidade, opcional, deixar 0 para não alterar",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "motivo",
            "in": "query",
            "description": "Motivo, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Atendimento/App_Transferir": {
      "post": {
        "tags": [
          "Atendimento"
        ],
        "summary": "Transferir corretor no atendimento",
        "description": "Retorno JSON para transferência de corretor no atendimento para APP do imoview ADM",
        "operationId": "AtendimentoApp_Transferir",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtendimento",
            "in": "query",
            "description": "Código do atendimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoNovoCorretor",
            "in": "query",
            "description": "Código do novo usuário corretor",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoNovaUnidade",
            "in": "query",
            "description": "Código da nova unidade, opcional, deixar 0 para não alterar",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "motivo",
            "in": "query",
            "description": "Motivo, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fasecodigo": {
                      "type": "integer",
                      "format": "int64",
                      "example": "int"
                    },
                    "fasenome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },


    "/Vistoria/App_RetornarLista": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna uma lista de vistorias",
        "description": "Retorno JSON da lista de vistoria do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_RetornarLista",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "pagina",
            "in": "query",
            "description": "Usado para paginação, página 1 padrão.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "situacao",
            "in": "query",
            "description": "Enviar 1 para 'em aberto', 2 'para em andamento', 3 para 'em revisão com o cliente', 4 para 'em revisão com a imobiliária', 5 para 'concluído', 6 para 'cancelado' e 0 para todos.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "tipo",
            "in": "query",
            "description": "Enviar 1 para 'entrada', 2 para 'saída', 3 para 'manutenção', 4 para 'verificar pendências' e 0 para todos.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataInicial",
            "in": "query",
            "description": "Data/hora início, formato dd/mm/yyyy.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataFinal",
            "in": "query",
            "description": "Data/hora final, formato dd/mm/yyyy.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "somenteUsuarioInformado",
            "in": "query",
            "description": "Envia true ou false.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          },
          {
            "name": "carregarAmbientes",
            "in": "query",
            "description": "Envia true ou false.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "CodigoUnidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "NomeUnidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "CodigoImovel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "ResumoImovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "EnderecoImovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "CodigoContratoAluguel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "ResumoContratoAluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "CodigoLocatario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "NomeLocatario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ResumoLocatario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "TipoLocatario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "TipoCodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "SituacaoCodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "CodigoVistoriador": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "ResumoVistoriador": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "DataHoraSolicitacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "DataHora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "DataHoraUltimaAlterracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "Anotacoes": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "IniciadoPeloSistema": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "Proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "CodigoProprietario": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "NomeProprietario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "ResumoProprietario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Acompanhar": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "Validar": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "PercentualProprietario": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                }
                              }
                            }
                          },
                          "Ambientes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "CodigoAmbiente": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "NomeAmbiente": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Sequencia": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Feito": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "ConsideracoesVistoriador": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "ConsideracoesLocatario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "ConsideracoesProprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "CodigoVistoriaProprietario": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "NomeProprietario": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Consideracoes": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "Fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "NomeArquivo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Responsavel": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "ResponsavelCodigo": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                },
                                "Itens": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "CodigoItem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "NomeItem": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Sequencia": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Feito": {
                                        "type": "boolean",
                                        "format": "boolean",
                                        "example": "bool"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Fotos": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "Codigo": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "Descricao": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "NomeArquivo": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "Url": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "Ordem": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "Responsavel": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "ResponsavelCodigo": {
                                              "type": "integer",
                                              "format": "int64",
                                              "example": "int"
                                            }
                                          }
                                        }
                                      },
                                      "SubItens": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "Codigo": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "CodigoSubItem": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "NomeSubItem": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "Medidores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Medidor": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "MedidorCodigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Valor": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "NomeArquivo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Responsavel": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "ResponsavelCodigo": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "Chaves": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "CodigoChave": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "NomeChave": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Quantidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Sequencia": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "NomeArquivo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Responsavel": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "ResponsavelCodigo": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarListaPorImovel": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna uma lista de vistorias por imóvel",
        "description": "Retorno JSON da lista de vistoria do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_RetornarListaPorImovel",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel existente no cadastro.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "Codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "Resumo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarDetalhes": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna uma lista de detalhes de vistorias",
        "description": "Retorno JSON da detalhe vistoria do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_RetornarDetalhes",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoVistoria",
            "in": "query",
            "description": "Código da vistoria.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "CodigoUnidade": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "NomeUnidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "CodigoImovel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "ResumoImovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "EnderecoImovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "CodigoContratoAluguel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "ResumoContratoAluguel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "CodigoLocatario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "NomeLocatario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ResumoLocatario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "TipoLocatario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "TipoCodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "SituacaoCodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "CodigoVistoriador": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "ResumoVistoriador": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "DataHoraSolicitacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "DataHora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "DataHoraUltimaAlterracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "Anotacoes": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "IniciadoPeloSistema": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "Proprietarios": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "CodigoProprietario": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "NomeProprietario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "ResumoProprietario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Acompanhar": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "Validar": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "PercentualProprietario": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                }
                              }
                            }
                          },
                          "Ambientes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "CodigoAmbiente": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "NomeAmbiente": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Sequencia": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Feito": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "ConsideracoesVistoriador": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "ConsideracoesLocatario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "ConsideracoesProprietarios": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "CodigoVistoriaProprietario": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "NomeProprietario": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Consideracoes": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "Fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "NomeArquivo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Responsavel": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "ResponsavelCodigo": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                },
                                "Itens": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "CodigoItem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "NomeItem": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Sequencia": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Feito": {
                                        "type": "boolean",
                                        "format": "boolean",
                                        "example": "bool"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Fotos": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "Codigo": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "Descricao": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "NomeArquivo": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "Url": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "Ordem": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "Responsavel": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "ResponsavelCodigo": {
                                              "type": "integer",
                                              "format": "int64",
                                              "example": "int"
                                            }
                                          }
                                        }
                                      },
                                      "SubItens": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "Codigo": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "CodigoSubItem": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "NomeSubItem": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "Medidores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Medidor": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "MedidorCodigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Valor": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "NomeArquivo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Responsavel": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "ResponsavelCodigo": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "Chaves": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "CodigoChave": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "NomeChave": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Quantidade": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Ordem": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Sequencia": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Anotacoes": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "Fotos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "NomeArquivo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Url": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "Ordem": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Responsavel": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "ResponsavelCodigo": {
                                        "type": "integer",
                                        "format": "int64",
                                        "example": "int"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarHorariosDisponiveis": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna uma lista com horários disponível para vistoria",
        "description": "Retorno JSON de horários disponíveis para agendar vistoria no imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_RetornarHorariosDisponiveis",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "data",
            "in": "query",
            "description": "Data/hora início, formato dd/mm/yyyy",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "string",
                    "format": "String",
                    "example": "08:00"
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_IncluirVistoria": {
      "post": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Inclui uma vistoria no Imoview ADM",
        "description": "Incluir vistoria no imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_IncluirVistoria",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "tipo",
            "in": "query",
            "description": "Enviar 1 para 'entrada', 2 para 'saída', 3 para 'manutenção', 4 para 'verificar pendências' e 0 para todos.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataHora",
            "in": "query",
            "description": "Data e hora de inclusão - formato dd/mm/yyyy hh:mm",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoLocatario",
            "in": "query",
            "description": "Código do locatário",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "anotacoes",
            "in": "query",
            "description": "Anotações vistoria",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigoVistoriaCopia",
            "in": "query",
            "description": "Vistoria que deseja ser copiada",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "copiarFotos",
            "in": "query",
            "description": "Caso for enviar um código de vistoria que deseja ser copiada, enviar true ou false para copiar fotos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_IniciarVistoria": {
      "post": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Inicia uma vistoria no Imoview",
        "description": "Retorno JSON inicio da vistoria do imoview CRM para pesquisa em APP",
        "operationId": "Vistoria/App_IniciarVistoria",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoVistoria",
            "in": "query",
            "description": "Código da vistoria.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_ConcluirVistoria": {
      "post": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Conclui uma vistoria no Imoview",
        "description": "Retorno JSON concluir vistoria do imoview APP",
        "operationId": "VistoriaApp_ConcluirVistoria",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "jsonVistoria",
            "in": "query",
            "description": "Dados da vistoria em JSON. Exemplo nos Schemas",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "String"
            }
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "fotos": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_ConcluirVistoriaFotos": {
      "post": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Conclui uma vistoria no Imoview",
        "description": "Retorno JSON concluir vistoria do imoview APP",
        "operationId": "VistoriaVistoria/App_ConcluirVistoriaFotos",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoVistoria",
            "in": "query",
            "description": "Código da vistoria.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "ultimoLote",
            "in": "query",
            "description": "Enviar true no último lote de fotos para conferência.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "requestBody": {
          "content": {
            "multipart/form-data": {
              "schema": {
                "type": "object",
                "properties": {
                  "fotos": {
                    "type": "string",
                    "format": "binary"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarAmbientes": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna ambientes de vistorias",
        "description": "Retorno JSON ambiente do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_RetornarAmbientes",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "texto de pesquisa",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "Codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "Nome": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "Tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "TipoCodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarAmbientesItens": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna itens dos ambientes de vistorias",
        "description": "Retorno JSON ambiente do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_RetornarAmbientesItens",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "texto de pesquisa",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "Codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "Nome": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarAmbientesSubItens": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna sub-itens dos ambientes de vistorias",
        "description": "Retorno JSON subitens ambiente do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_RetornarAmbientesSubItens",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "tipoSubItem",
            "in": "query",
            "description": "1 para 'qualificação', 2 para 'marca', 3 para 'modelo', 4 para 'material', 5 para 'cor', 6 para 'detalhe' e 7 para 'pintura'.",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "textoPesquisa",
            "in": "query",
            "description": "texto de pesquisa",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "Codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "Nome": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "Tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "TipoCodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_IncluirAmbiente": {
      "post": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Inclui um ambiente para vistoria",
        "description": "Incluir ambiente do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_IncluirAmbiente",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "nome",
            "in": "query",
            "description": "Nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "tipo",
            "in": "query",
            "description": "0 para 'outro', 1 para 'quarto', 2 para 'suite', 3 para 'banheiro', 4 para 'sala', 5 para 'copa' e 6 para 'varanda'",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigosItem",
            "in": "query",
            "description": "Informe os códigos dos itens separado por vírgula que serão relacionados com o ambiente",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "re",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipocodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_IncluirItem": {
      "post": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Inclui um item para vistorias",
        "description": "Incluir itens ambiente do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_IncluirItem",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "nome",
            "in": "query",
            "description": "Nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigosAmbientes",
            "in": "query",
            "description": "Informe os códigos dos ambientes separado por vírgula que serão relacionados com o item",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "codigosSubItem",
            "in": "query",
            "description": "Informe os códigos dos subitens separado por vírgula que serão relacionados com o item",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_IncluirSubItem": {
      "post": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Inclui um sub-item para vistorias",
        "description": "Incluir subitens ambiente do imoview CRM para pesquisa em APP",
        "operationId": "VistoriaApp_IncluirSubItem",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "nome",
            "in": "query",
            "description": "Nome",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "tipo",
            "in": "query",
            "description": "0 para 'outro', 1 para 'qualificação', 2 para 'marca', 3 para 'modelo', 4 para 'material', 5 para 'cor' e 6 para 'detalhe' e 7 para 'pintura'",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigosItem",
            "in": "query",
            "description": "Informe os códigos dos itens separado por vírgula que serão relacionados com o subitem",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "tipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipocodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarConfiguracoes": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna todas as configurações de vistorias com relacionamento",
        "description": "Retornar vistorias todas as configurações com relacionamento",
        "operationId": "VistoriaApp_RetornarConfiguracoes",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "ambientes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ExigirFoto": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "Itens": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "ExigirFoto": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "SubItens_Qualificacoes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "SubItens_Marcas": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "SubItens_Modelos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "SubItens_Materiais": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "SubItens_Pinturas": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "SubItens_Cores": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                },
                                "SubItens_Detalhes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "Codigo": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "Nome": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "Chaves": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "Medidores": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_RetornarConfiguracoesGerais": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna todas as configurações de vistorias sem relacionamento",
        "description": "Retornar vistorias todas as configurações sem relacionamento",
        "operationId": "Vistoria/App_RetornarConfiguracoesGerais",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "Ambientes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ExigirFoto": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          }
                        }
                      }
                    },
                    "Itens": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "ExigirFoto": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "SubItens_Qualificacoes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "SubItens_Marcas": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "SubItens_Modelos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "SubItens_Materiais": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "SubItens_Pinturas": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "SubItens_Cores": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "SubItens_Detalhes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "Codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "Nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "Subitens": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "Tipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "TipoCodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          }
                        }
                      }
                    },
                    "Chaves": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "Medidores": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "Codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "Nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_BaixarLaudo": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna a url para baixar o laudo de vistoria",
        "description": "Retorno JSON para baixar pdf laudo da vistoria no APP/Área do cliente do imoview ADM",
        "operationId": "VistoriaApp_BaixarLaudo",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoVistoria",
            "in": "query",
            "description": "Código da vistoria.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoModelo",
            "in": "query",
            "description": "Código do modelo do formulário (listar em /Usuario/App_RetornarModelosRelatorio(codigoUsuario=x&tipo=21)).",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "novoLaudo",
            "in": "query",
            "description": "Enviar true para gerar novo laudo",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "urldownload": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "urlcurtadownload": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "solicitacaorobo": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "boolean"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Vistoria/App_VerificarLaudoGerado": {
      "get": {
        "tags": [
          "Vistoria"
        ],
        "summary": "Retorna se existe ou não um laudo gerado para baixar",
        "description": "Retorno JSON para verificar se existe laudo da vistoria gerado",
        "operationId": "VistoriaApp_VerificarLaudoGerado",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoVistoria",
            "in": "query",
            "description": "Código da vistoria.",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "laudogerado": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "boolean"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          },
          {
            "codigoacesso": []
          }
        ]
      }
    },
    "/Agenda/RetornarAtividades": {
      "get": {
        "tags": [
          "Agenda"
        ],
        "summary": "Retorna as atividades dos usuário do Imoview",
        "description": "Retorno JSON lista de atividades para APP do imoview ADM",
        "operationId": "AgendaRetornarAtividades",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 100",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataInicio",
            "in": "query",
            "description": "Data/hora início, formato dd/mm/yyyy",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataFim",
            "in": "query",
            "description": "Data/hora fim, formato dd/mm/yyyy",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraInicialUltimaAlteracao",
            "in": "query",
            "description": "Data/hora inicial da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraFinalUltimaAlteracao",
            "in": "query",
            "description": "Data/hora final da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "situacao",
            "in": "query",
            "description": "Situação das atividades (Todas = 0, Pendentes = 1, Realizadas = 2, Agendadas = 4)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "data": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "atividades": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datahorainicio": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahorafim": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "diainteiro": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "codigotipo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nometipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "cortipo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigousuario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeusuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fotousuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigopessoa": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomepessoa": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "resumopessoa": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigoimovel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "resumoimovel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "realizada": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "notas": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "datahora": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigousuario": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomeusuario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "fotousuario": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "texto": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "covidados": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigo": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nome": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Agenda/RetornarDetalhesAtividade": {
      "get": {
        "tags": [
          "Agenda"
        ],
        "summary": "Retorna os detalhes das atividades dos usuário do Imoview",
        "description": "Retorno JSON detalhes de uma atividade para APP do imoview ADM",
        "operationId": "AgendaRetornarDetalhesAtividade",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoAtividade",
            "in": "query",
            "description": "Código atividade",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "datahorainicio": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahorafim": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "diainteiro": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "codigotipo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nometipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "cortipo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "codigousuario": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nomeusuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "fotousuario": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "codigopessoa": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nomepessoa": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "resumopessoa": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "codigoimovel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "resumoimovel": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "realizada": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },
                    "notas": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "datahora": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigousuario": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeusuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "fotousuario": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "texto": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "covidados": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nome": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Agenda/RetornarTiposAtividades": {
      "get": {
        "tags": [
          "Agenda"
        ],
        "summary": "Retorna a lista de tipos de atividades no Imoview",
        "description": "Retorno JSON lista de tipos de atividades para APP do imoview ADM",
        "operationId": "AgendaRetornarTiposAtividades",
        "parameters": [
          {
            "name": "codigoUsuario",
            "in": "query",
            "description": "Código do usuário validado",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Agenda/IncluirAtividade": {
      "post": {
        "tags": [
          "Agenda"
        ],
        "summary": "Inclui uma atividade no Imoview",
        "description": "Retorno JSON para inclusão de atividade para APP do imoview ADM",
        "operationId": "Agenda/IncluirAtividade",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigousuario": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "CodigoTipo": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "datahorainicio": {
                    "type": "string",
                    "format": "string",
                    "example": "25/06/2021 12:00"
                  },
                  "datahorafim": {
                    "type": "string",
                    "format": "string",
                    "example": "25/06/2021 13:00"
                  },
                  "titulo": {
                    "type": "string",
                    "format": "string",
                    "example": "Visita imóvel 123"
                  },
                  "texto": {
                    "type": "string",
                    "format": "string",
                    "example": "Visita no imóvel 123"
                  },
                  "codigopessoa": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigoimovel": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigoatendimento": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigocontratoaluguel": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigocontratovenda": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigoprocesso": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "diainteiro": {
                    "type": "boolean",
                    "format": "boolean"
                  },
                  "codigosusuariosconvidados": {
                    "type": "string",
                    "format": "string",
                    "example": "1,2,3"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nome": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Agenda/IncluirNota": {
      "post": {
        "tags": [
          "Agenda"
        ],
        "summary": "Inclui uma nota na atividade no Imoview",
        "description": "Retorno JSON para inclusão de nota em uma atividade para APP do imoview ADM",
        "operationId": "AgendaIncluirNota",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigousuario": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigoatividade": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "texto": {
                    "type": "string",
                    "format": "string",
                    "example": "Visita no imóvel 123"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Agenda/ExcluirAtividade": {
      "post": {
        "tags": [
          "Agenda"
        ],
        "summary": "Exclui uma atividade no Imoview",
        "description": "Retorno JSON para exclusão de atividade para APP do imoview ADM",
        "operationId": "AgendaExcluirAtividade",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigousuario": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigoatividade": {
                    "type": "integer",
                    "format": "Int64"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },
    "/Agenda/RealizarAtividade": {
      "post": {
        "tags": [
          "Agenda"
        ],
        "summary": "Realiza uma atividade no Imoview",
        "description": "Retorno JSON para realizar atividade para APP do imoview ADM",
        "operationId": "AgendaRealizarAtividade",
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "codigousuario": {
                    "type": "integer",
                    "format": "Int64"
                  },
                  "codigoatividade": {
                    "type": "integer",
                    "format": "Int64"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "mensagem": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },


    "/Movimento/RetornarMovimentos": {
      "get": {
        "tags": [
          "Movimento"
        ],
        "summary": "Retorna os movimentos do Imoview",
        "description": "Retorno JSON lista de movimentos do imoview ADM",
        "operationId": "RetornarMovimentos",
        "parameters": [
          {
            "name": "numeroPagina",
            "in": "query",
            "description": "Usado para paginação, enviar o nº da página atual",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "numeroRegistros",
            "in": "query",
            "description": "Nº de registros para retorno, máximo 1000",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoCliente",
            "in": "query",
            "description": "Código do cliente, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoImovel",
            "in": "query",
            "description": "Código do imóvel, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoContratoAluguel",
            "in": "query",
            "description": "Código do contrato aluguel, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "codigoContratoVenda",
            "in": "query",
            "description": "Código do contrato venda, opcional",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "dataVencimentoInicial",
            "in": "query",
            "description": "Data vencimento início, formato dd/mm/yyyy",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataVencimentoFinal",
            "in": "query",
            "description": "Data vencimento fim, formato dd/mm/yyyy",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraInicialUltimaAlteracao",
            "in": "query",
            "description": "Data/hora inicial da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "dataHoraFinalUltimaAlteracao",
            "in": "query",
            "description": "Data/hora final da última alteração no formato (dd/MM/yyyy HH:mm:ss)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "string",
              "format": "string"
            }
          },
          {
            "name": "situacaoConta",
            "in": "query",
            "description": "Situação da conta (0 = Todas, 1 = Contas pendentes, 2 = Contas quitadas)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          },
          {
            "name": "temBoleto",
            "in": "query",
            "description": "true = Somente movimentos com boleto ativo, false = Todos",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "boolean",
              "format": "boolean"
            }
          },
          {
            "name": "codigoTipoGarantia",
            "in": "query",
            "description": "Código do tipo de garantia, tabela auxiliar (/Movimento/RetornarTiposGarantias)",
            "required": false,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "quantidade": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "lista": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoauxiliar": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "unidadecodigo": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "unidade": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "modulo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "tipocliente": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigocliente": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomecliente": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocontratoaluguel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigocontratovenda": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoimovel": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "numerodocumento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "historico": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "linhadigitavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahorainclusao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datahoraultimaalteracao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datapagamento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "saldo": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "temboletoativo": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },

                          "detalhes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigodetalhe": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "codigoplanoconta": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomeplanoconta": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigocontabilplanoconta": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "observacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "deduzirir": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "centrocustos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigocentrocusto": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "nomecentrocusto": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "formasquitacao": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "forma": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "data": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "deduzirir": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "codigoboleto": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "codigotransferencia": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          },
                          "repasses": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "tipocliente": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigocliente": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomecliente": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "numerodocumento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "bloqueado": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "linhadigitavel": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datavencimento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "datapagamento": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "saldo": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "detalhes": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigodetalhe": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "codigoplanoconta": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "nomeplanoconta": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "codigocontabilplanoconta": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "descricao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "observacao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      },
                                      "deduzirir": {
                                        "type": "boolean",
                                        "format": "boolean",
                                        "example": "bool"
                                      },
                                      "centrocustos": {
                                        "type": "array",
                                        "items": {
                                          "type": "object",
                                          "properties": {
                                            "codigocentrocusto": {
                                              "type": "integer",
                                              "format": "Int64",
                                              "example": "int"
                                            },
                                            "nomecentrocusto": {
                                              "type": "string",
                                              "format": "string",
                                              "example": "string"
                                            },
                                            "valor": {
                                              "type": "number",
                                              "format": "number",
                                              "example": "double"
                                            }
                                          }
                                        }
                                      }
                                    }
                                  }
                                },
                                "formasquitacao": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "forma": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "situacao": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "data": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      },
                                      "deduzirir": {
                                        "type": "boolean",
                                        "format": "boolean",
                                        "example": "bool"
                                      },
                                      "codigoboleto": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "codigotransferencia": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "resumo": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      }
                                    }
                                  }
                                }


                              }
                            }
                          }


                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },

    "/Movimento/RetornarDetalhesMovimento": {
      "get": {
        "tags": [
          "Movimento"
        ],
        "summary": "Retorna detalhes de um movimento do Imoview",
        "description": "Retorno JSON de movimento do imoview ADM",
        "operationId": "RetornarDetalhesMovimento",
        "parameters": [
          {
            "name": "codigoMovimento",
            "in": "query",
            "description": "Código do movimento",
            "required": true,
            "style": "form",
            "explode": true,
            "schema": {
              "type": "integer",
              "format": "Int64"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {




                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "codigoauxiliar": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "unidadecodigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "unidade": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "modulo": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "tipocliente": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "codigocliente": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "nomecliente": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "codigocontratoaluguel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "codigocontratovenda": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "codigoimovel": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "int"
                    },
                    "numerodocumento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "historico": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "linhadigitavel": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahorainclusao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datahoraultimaalteracao": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datavencimento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "datapagamento": {
                      "type": "string",
                      "format": "string",
                      "example": "string"
                    },
                    "saldo": {
                      "type": "number",
                      "format": "number",
                      "example": "double"
                    },
                    "temboletoativo": {
                      "type": "boolean",
                      "format": "boolean",
                      "example": "bool"
                    },

                    "detalhes": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "codigodetalhe": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigoplanoconta": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomeplanoconta": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocontabilplanoconta": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "descricao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "observacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "deduzirir": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "centrocustos": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigocentrocusto": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomecentrocusto": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                }
                              }
                            }
                          }
                        }
                      }
                    },
                    "formasquitacao": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "forma": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "situacao": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "data": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "valor": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "deduzirir": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "codigoboleto": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "codigotransferencia": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "resumo": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          }
                        }
                      }
                    },
                    "repasses": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "tipocliente": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "codigocliente": {
                            "type": "integer",
                            "format": "Int64",
                            "example": "int"
                          },
                          "nomecliente": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "numerodocumento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "bloqueado": {
                            "type": "boolean",
                            "format": "boolean",
                            "example": "bool"
                          },
                          "linhadigitavel": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datavencimento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "datapagamento": {
                            "type": "string",
                            "format": "string",
                            "example": "string"
                          },
                          "saldo": {
                            "type": "number",
                            "format": "number",
                            "example": "double"
                          },
                          "detalhes": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "codigodetalhe": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "codigoplanoconta": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "nomeplanoconta": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "codigocontabilplanoconta": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "descricao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "observacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "deduzirir": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "centrocustos": {
                                  "type": "array",
                                  "items": {
                                    "type": "object",
                                    "properties": {
                                      "codigocentrocusto": {
                                        "type": "integer",
                                        "format": "Int64",
                                        "example": "int"
                                      },
                                      "nomecentrocusto": {
                                        "type": "string",
                                        "format": "string",
                                        "example": "string"
                                      },
                                      "valor": {
                                        "type": "number",
                                        "format": "number",
                                        "example": "double"
                                      }
                                    }
                                  }
                                }
                              }
                            }
                          },
                          "formasquitacao": {
                            "type": "array",
                            "items": {
                              "type": "object",
                              "properties": {
                                "forma": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "situacao": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "data": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                },
                                "valor": {
                                  "type": "number",
                                  "format": "number",
                                  "example": "double"
                                },
                                "deduzirir": {
                                  "type": "boolean",
                                  "format": "boolean",
                                  "example": "bool"
                                },
                                "codigoboleto": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "codigotransferencia": {
                                  "type": "integer",
                                  "format": "Int64",
                                  "example": "int"
                                },
                                "resumo": {
                                  "type": "string",
                                  "format": "string",
                                  "example": "string"
                                }
                              }
                            }
                          }


                        }
                      }
                    }




                  }




                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    },

    "/Movimento/RetornarTiposGarantias": {
      "get": {
        "tags": [
          "Movimento"
        ],
        "summary": "Retorna os tipos de garantias do Imoview",
        "description": "Retorno JSON lista de tipos garantias do imoview ADM",
        "operationId": "RetornarTiposGarantias",
        "parameters": [
        ],
        "responses": {
          "200": {
            "description": "Retornado com sucesso",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "codigo": {
                        "type": "integer",
                        "format": "Int64",
                        "example": "int"
                      },
                      "nome": {
                        "type": "string",
                        "format": "string",
                        "example": "string"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "api_key": []
          }
        ]
      }
    }


  },
  "components": {
    "schemas": {
      "Usuario": {
        "type": "object",
        "properties": {
          "codigo": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          },
          "nome": {
            "type": "string",
            "format": "string",
            "example": "Gabriel Henrique"
          },
          "cpfoucnpj": {
            "type": "string",
            "format": "string",
            "example": "111.111.111-11"
          },
          "telefone": {
            "type": "string",
            "format": "string",
            "example": "(31) 9999-9999"
          },
          "email": {
            "type": "string",
            "format": "string",
            "example": "gabriel.henrique@unsoft.com.br"
          },
          "endereco": {
            "type": "string",
            "format": "string",
            "example": "Rua x"
          },
          "locatario": {
            "type": "boolean",
            "format": "string",
            "example": true
          },
          "comprador": {
            "type": "boolean",
            "format": "string",
            "example": true
          },
          "locador": {
            "type": "boolean",
            "format": "string",
            "example": true
          },
          "vendedor": {
            "type": "boolean",
            "format": "string",
            "example": true
          },
          "fiador": {
            "type": "boolean",
            "format": "string",
            "example": true
          }
        }
      },
      "IncluirTicket": {
        "type": "object",
        "properties": {
          "codigocliente": {
            "type": "integer",
            "format": "Int64",
            "example": 10
          },
          "codigoimovel": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          },
          "codigotipo": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          },
          "origem": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL"
          },
          "anotacoes": {
            "type": "string",
            "format": "string",
            "example": "Problema de infiltração"
          }
        }
      },
      "IncluirInteracaoTicket": {
        "type": "object",
        "properties": {
          "codigoticket": {
            "type": "integer",
            "format": "Int64",
            "example": 10
          },
          "anotacoes": {
            "type": "string",
            "format": "string",
            "example": "Teste"
          }
        }
      },
      "Imoveis": {
        "type": "object",
        "properties": {
          "finalidade": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          },
          "numeroPagina": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          },
          "numeroRegistros": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          }
        }
      },
      "ImoveisPorSituacao": {
        "type": "object",
        "properties": {
          "situacao": {
            "type": "integer",
            "format": "Int64",
            "example": 1
          },
          "finalidade": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          },
          "numeroPagina": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          },
          "numeroRegistros": {
            "type": "integer",
            "format": "Int64",
            "example": 2
          }
        }
      },
      "ApiResponse": {
        "type": "object",
        "properties": {
          "code": {
            "type": "integer",
            "format": "Int64"
          },
          "message": {
            "type": "string",
            "format": "Int64"
          }
        }
      },
      "IncluirAtendimento": {
        "type": "object",
        "properties": {
          "unidadecodigo": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar código da unidade (lista em App_ValidarAcesso)"
          },
          "finalidadecodigo": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar 1 (aluguel), 2 (venda)"
          },
          "tipocodigo": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar o tipo do atendimento (lista em App_RetornarListasAuxiliares)"
          },
          "midiacodigo": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar a mídia de origem (lista em App_RetornarListasAuxiliares)"
          },
          "leadcodigo": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar o código do lead (se existir cadastro, lista em Cliente/App_PesquisarCliente)"
          },
          "leadnome": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Se cadastro (sem leadcodigo)"
          },
          "leadtelefone": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Se cadastro e e-mail preenchido"
          },
          "leademail": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Se cadastro e telefone preenchido"
          },
          "termometrocodigo": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar 0 (indefinido), 1 (frio), 2 (morno) ou 3 (quente)"
          },
          "campanha": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar nome da campanha"
          },
          "interacaoinicial": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar texto inicial"
          },
          "imovelcodigo": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar os códigos dos imóveis separados por vírgula (,)"
          }
        }
      },
      "SalvarAtendimento": {
        "type": "object",
        "properties": {
          "lead": {
            "type": "object",
            "properties": {
              "nome": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar o nome do lead"
              },
              "emailtipocodigo": {
                "type": "string",
                "format": "string",
                "example": "OPCIONAL - Enviar o tipo de e-mail do lead"
              },
              "email": {
                "type": "string",
                "format": "string",
                "example": "OPCIONAL - Enviar o e-mail do lead"
              }
            }
          },
          "perfil": {
            "type": "object",
            "properties": {
              "tiposimoveis": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "OBRIGATÓRIO - Enviar tipo do imóvel (lista em App_RetornarListasAuxiliares)"
                    }
                  }
                }
              },
              "cidades": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "codigo": {
                      "type": "integer",
                      "format": "Int64",
                      "example": "OBRIGATÓRIO - Enviar cidade (lista em Imovel/App_PesquisarCidade)"
                    }
                  }
                }
              }
            }
          }
        }
      },
      "AlterarImovelVisita": {
        "type": "object",
        "properties": {
          "codigovisita": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Código da visita"
          },
          "datahoraagendamento": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar data/hora do agendamento, formato (dd/mm/aaaa hh:mm)"
          },
          "situacao": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar 1 (agendamento) ou 2 (na rua)"
          }
        }
      },
      "IncluirImovelEmprestimoChave": {
        "type": "object",
        "properties": {
          "datahoraagendamento": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar data/hora do agendamento, formato (dd/mm/aaaa hh:mm)"
          },
          "prazo": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar o prazo (em horas) para entrega da chave"
          },
          "situacao": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar 1 (agendamento) ou 2 (na rua)"
          },
          "lead": {
            "type": "object",
            "properties": {
              "codigo": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o código do lead"
              },
              "nome": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar o nome do lead"
              },
              "cpfcnpj": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar o CPF/CNPJ do lead"
              },
              "documentotipocodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o tipo de documento (lista em App_RetornarListasAuxiliares)"
              },
              "documentonumero": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar o documento do lead"
              },
              "documentodataemissao": {
                "type": "string",
                "format": "date-time",
                "example": "OPCIONAL - Enviar a data de emissão do documento do lead"
              },
              "emailtipocodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o tipo de e-mail (lista em App_RetornarListasAuxiliares)"
              },
              "email": {
                "type": "string",
                "format": "string",
                "example": "OPCIONAL - Enviar o e-mail do lead"
              },
              "telefone1tipocodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OBRIGATÓRIO - Enviar o tipo do telefone 1 (lista em App_RetornarListasAuxiliares)"
              },
              "telefone1": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO' - Enviar o telefone 1 do lead"
              },
              "telefone2tipocodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o tipo do telefone 2 (lista em App_RetornarListasAuxiliares)"
              },
              "telefone2": {
                "type": "string",
                "format": "string",
                "example": "OPCIONAL - Enviar o telefone 2 do lead"
              },
              "sexocodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o sexo do lead (lista em ConstantesComum.Sexos)"
              },
              "conjugecodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o código do cônjuge do lead"
              },
              "datanascimento": {
                "type": "string",
                "format": "date-time",
                "example": "OPCIONAL - Enviar a data de nascimento do lead"
              },
              "profissaocodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o código da profissão do lead (lista em App_RetornarListasAuxiliares)"
              },
              "rendamensal": {
                "type": "number",
                "format": "double",
                "example": "OPCIONAL - Enviar a renda mensal do lead"
              },
              "rendafamilia": {
                "type": "number",
                "format": "double",
                "example": "OPCIONAL - Enviar a renda familiar do lead"
              },
              "valorfgts": {
                "type": "number",
                "format": "double",
                "example": "OPCIONAL - Enviar o valor do FGTS do lead"
              },
              "valorentrada": {
                "type": "number",
                "format": "double",
                "example": "OPCIONAL - Enviar o valor de entrada do lead"
              },
              "enderecotipocodigo": {
                "type": "integer",
                "format": "int32",
                "example": "OBRIGATÓRIO - Enviar o tipo de endereço do lead (lista em App_RetornarListasAuxiliares)"
              },
              "endereco": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar o endereço do lead"
              },
              "endereconumero": {
                "type": "string",
                "format": "string",
                "example": "OPCIONAL - Enviar o nº do endereço do lead"
              },
              "enderecocomplemento": {
                "type": "string",
                "format": "string",
                "example": "OPCIONAL - Enviar o complemento do endereço do lead"
              },
              "enderecobairronome": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar o bairro do lead"
              },
              "enderecocidadenome": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar a cidade do lead"
              },
              "enderecoestado": {
                "type": "string",
                "format": "string",
                "example": "OBRIGATÓRIO - Enviar o estado do lead"
              },
              "enderecocep": {
                "type": "integer",
                "format": "int32",
                "example": "OPCIONAL - Enviar o CEP do endereço do lead"
              }
            }
          }
        }
      },
      "AlterarImovelEmprestimoChave": {
        "type": "object",
        "properties": {
          "codigovisita": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Código da visita"
          },
          "datahoraagendamento": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar data/hora do agendamento, formato (dd/mm/aaaa hh:mm)"
          },
          "prazo": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar o prazo (em horas) para entrega da chave"
          },
          "situacao": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar 1 (agendamento) ou 2 (na rua)"
          }
        }
      },
      "SalvarParecerVisita": {
        "type": "object",
        "properties": {
          "codigovisita": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Código da visita"
          },
          "parecer": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar 1 (Gostou) ou 2 (Não gostou)"
          },
          "codigomotivo": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar código do motivo (lista de motivos em App_RetornarListasAuxiliares)"
          },
          "complementomotivo": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar texto complementar"
          }
        }
      },
      "IncluirReservaImovelProposta": {
        "type": "object",
        "properties": {
          "codigoproposta": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Código da proposta"
          },
          "datafimreserva": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar a data fim da reserva, formato dd/mm/yyyy"
          },
          "descricao": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar descrição da reserva"
          }
        }
      },
      "CancelarReservaImovelProposta": {
        "type": "object",
        "properties": {
          "codigoproposta": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Código da proposta"
          },
          "descricao": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar descrição da reserva"
          }
        }
      },
      "ConcluirVistoria": {
        "type": "object",
        "properties": {
          "codigo": {
            "type": "integer",
            "format": "Int64"
          },
          "CodigoUnidade": {
            "type": "integer",
            "format": "Int64"
          },
          "CodigoImovel": {
            "type": "integer",
            "format": "Int64"
          },
          "CodigoContratoAluguel": {
            "type": "integer",
            "format": "Int64"
          },
          "CodigoLocatario": {
            "type": "integer",
            "format": "Int64"
          },
          "TipoCodigo": {
            "type": "integer",
            "format": "Int64"
          },
          "CodigoVistoriador": {
            "type": "integer",
            "format": "Int64"
          },
          "Anotacoes": {
            "type": "string",
            "format": "string"
          },
          "Proprietarios": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "Codigo": {
                  "type": "integer",
                  "format": "Int64"
                },
                "CodigoProprietario": {
                  "type": "integer",
                  "format": "Int64"
                },
                "Acompanhar": {
                  "type": "boolean",
                  "format": "boolean"
                },
                "Validar": {
                  "type": "boolean",
                  "format": "boolean"
                }
              }
            }
          },
          "Ambientes": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "Codigo": {
                  "type": "integer",
                  "format": "Int64"
                },
                "CodigoAmbiente": {
                  "type": "integer",
                  "format": "Int64"
                },
                "Ordem": {
                  "type": "integer",
                  "format": "Int64"
                },
                "Sequencia": {
                  "type": "integer",
                  "format": "Int64"
                },
                "Feito": {
                  "type": "boolean",
                  "format": "boolean"
                },
                "ConsideracoesVistoriador": {
                  "type": "string",
                  "format": "string"
                },
                "ConsideracoesLocatario": {
                  "type": "string",
                  "format": "string"
                },
                "ConsideracoesProprietarios": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "CodigoVistoriaProprietario": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "Consideracoes": {
                        "type": "string",
                        "format": "string"
                      }
                    }
                  }
                },
                "Fotos": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "Codigo": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "Descricao": {
                        "type": "string",
                        "format": "string"
                      },
                      "NomeArquivo": {
                        "type": "string",
                        "format": "string"
                      },
                      "Ordem": {
                        "type": "integer",
                        "format": "int64"
                      },
                      "ResponsavelCodigo": {
                        "type": "integer",
                        "format": "int64"
                      }
                    }
                  }
                },
                "Itens": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "Codigo": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "CodigoItem": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "Ordem": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "Sequencia": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "Feito": {
                        "type": "boolean",
                        "format": "boolean"
                      },
                      "Fotos": {
                        "type": "array",
                        "items": {
                          "properties": {
                            "Codigo": {
                              "type": "integer",
                              "format": "Int64"
                            },
                            "Descricao": {
                              "type": "string",
                              "format": "string"
                            },
                            "NomeArquivo": {
                              "type": "string",
                              "format": "string"
                            },
                            "Ordem": {
                              "type": "integer",
                              "format": "int64"
                            },
                            "ResponsavelCodigo": {
                              "type": "integer",
                              "format": "int64"
                            }
                          }
                        }
                      },
                      "SubItens": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "Codigo": {
                              "type": "integer",
                              "format": "Int64"
                            },
                            "CodigoSubItem": {
                              "type": "integer",
                              "format": "Int64"
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "Medidores": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "Codigo": {
                  "type": "integer",
                  "format": "Int64"
                },
                "MedidorCodigo": {
                  "type": "integer",
                  "format": "Int64"
                },
                "Valor": {
                  "type": "integer",
                  "format": "Int64"
                },
                "Ordem": {
                  "type": "integer",
                  "format": "Int64"
                },
                "Anotacoes": {
                  "type": "string",
                  "format": "string"
                },
                "Fotos": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "Codigo": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "Descricao": {
                        "type": "string",
                        "format": "string"
                      },
                      "NomeArquivo": {
                        "type": "string",
                        "format": "string"
                      },
                      "Url": {
                        "type": "string",
                        "format": "string"
                      },
                      "Ordem": {
                        "type": "integer",
                        "format": "Int64"
                      },
                      "ResponsavelCodigo": {
                        "type": "integer",
                        "format": "Int64"
                      }
                    }
                  }
                }
              }
            }
          }
        }
      },
      "ImovelRetornar": {
        "type": "object",
        "properties": {
          "quantidade": {
            "type": "integer",
            "format": "Int64",
            "example": "int"
          },
          "lista": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "codigo": {
                  "type": "integer",
                  "format": "Int64",
                  "example": "int"
                },
                "finalidade": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "situacao": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "tipoimovel": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "endereco": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "valor": {
                  "type": "number",
                  "format": "number",
                  "example": "double"
                },
                "fotoprincipal": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "areaprincipal": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "numeroquartos": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "numerovagas": {
                  "type": "string",
                  "format": "string",
                  "example": "string"
                },
                "valorcondominio": {
                  "type": "number",
                  "format": "number",
                  "example": "double"
                }
              }
            }
          }
        }
      },
      "ImovelIncluir": {
        "type": "object",
        "properties": {
          "codigousuario": {
            "type": "integer",
            "format": "Int64"
          },
          "codigounidade": {
            "type": "integer",
            "format": "Int64"
          },
          "finalidade": {
            "type": "integer",
            "format": "Int64"
          },
          "destinacao": {
            "type": "integer",
            "format": "Int64"
          },
          "codigotipo": {
            "type": "integer",
            "format": "Int64"
          },
          "localchave": {
            "type": "integer",
            "format": "Int64"
          },
          "valores": {
            "type": "object",
            "properties": {
              "valor": {
                "type": "integer",
                "format": "int32"
              },
              "valorcondominio": {
                "type": "integer",
                "format": "int32"
              }
            }
          },
          "areas": {
            "type": "object",
            "properties": {
              "areainterna": {
                "type": "integer",
                "format": "int32"
              }
            }
          },
          "endereco": {
            "type": "object",
            "properties": {
              "rua": {
                "type": "string",
                "format": "string"
              },
              "numero": {
                "type": "integer",
                "format": "Int64"
              },
              "complemento": {
                "type": "string",
                "format": "string"
              },
              "bairro": {
                "type": "string",
                "format": "string"
              },
              "cidade": {
                "type": "string",
                "format": "string"
              },
              "estado": {
                "type": "string",
                "format": "string"
              }
            }
          },
          "caracteristicasinternas": {
            "type": "object",
            "properties": {
              "numeroquartos": {
                "type": "integer",
                "format": "int64"
              }
            }
          },
          "proprietarios": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "nome": {
                  "type": "string",
                  "format": "string"
                },
                "cpfoucnpj": {
                  "type": "string",
                  "format": "string"
                },
                "telefone": {
                  "type": "string",
                  "format": "string"
                },
                "percentual": {
                  "type": "integer",
                  "format": "int64",
                  "maximum": 100
                }
              }
            }
          },
          "descricao": {
            "type": "string",
            "format": "string"
          }
        }
      },
      "IncluirAnexo": {
        "type": "object",
        "properties": {
          "codigoimovel": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar o código do imóvel cadastrado no CRM."
          },
          "urlanexo": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar a URL do anexo a ser adicionado."
          }
        }
      },
      "LeadIncluir": {
        "type": "object",
        "properties": {
          "nome": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar o nome do lead preenchido no formulário"
          },
          "telefone": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar o telefone do lead, OBRIGATÓRIO se não tiver e-mail"
          },
          "email": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar o e-mail do lead, OBRIGATÓRIO se não tiver telefone"
          },
          "midia": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar nome da mídia de captação"
          },
          "finalidade": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA, outro valor assume VENDA"
          },
          "codigounidade": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar código da unidade ou será assumido a unidade do imóvel"
          },
          "codigoimovel": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar código do imóvel para direcionar o atendimento e perfil da procura"
          },
          "campanha": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar nome da campanha"
          },
          "utm": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar parâmetros Google"
          },
          "anotacoes": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar texto informado pelo lead"
          },
          "emailcorretor": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - E-mail do corretor/MQL para envio direto de atendimento, sem fila"
          }
        }
      },
      "LeadIncluirCaptacao": {
        "type": "object",
        "properties": {
          "nome": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar o nome do lead preenchido no formulário"
          },
          "telefone": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar o telefone do lead, OBRIGATÓRIO se não tiver e-mail"
          },
          "email": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar o e-mail do lead, OBRIGATÓRIO se não tiver telefone"
          },
          "midia": {
            "type": "string",
            "format": "string",
            "example": "OBRIGATÓRIO - Enviar nome da mídia de captação"
          },
          "finalidade": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar 1 para ALUGUEL, 2 para VENDA, outro valor assume VENDA"
          },
          "codigounidade": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar código da unidade ou será assumido a unidade do imóvel"
          },
          "codigoimovel": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar código do imóvel para direcionar o atendimento e perfil da procura"
          },
          "campanha": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar nome da campanha"
          },
          "utm": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar parâmetros Google"
          },
          "anotacoes": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar texto informado pelo lead"
          },
          "emailcorretor": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - E-mail do corretor/MQL para envio direto de atendimento, sem fila"
          },
          "destinacao": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar 1 para RESIDENCIAL, 2 para COMERCIAL, 3 para RESIDENCIAL E COMERCIAL, 4 para INDUSTRIAL, 5 para RURAL, 6 para TEMPORADA"
          },
          "codigotipoimovel": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar o tipo de imóvel selecionado de acordo com a lista existente (RetornarTiposImoveisDisponiveis)"
          },
          "tipoimovel": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL - Enviar tipo imóvel texto se não tiver o codigotipoimovel"
          },
          "valorimovel": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o valor desejado do imóvel"
          },
          "valorcondominio": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o valor do condomínio do imóvel"
          },
          "valoriptu": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o valor do IPTU do imóvel"
          },
          "areainterna": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar a área interna do imóvel"
          },
          "areaexterna": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar a área externa do imóvel"
          },
          "arealote": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar a área do lote do imóvel"
          },
          "andar": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o nº do andar do imóvel"
          },
          "numeroquarto": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o nº de quartos do imóvel"
          },
          "numerosuite": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o nº de suítes do imóvel"
          },
          "numerobanho": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o nº de banheiros do imóvel"
          },
          "numerovaga": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o nº de vagas do imóvel"
          },
          "aceitapermuta": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar true ou false"
          },
          "aceitafinanciamento": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar true ou false"
          },
          "ocupado": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar true ou false"
          },
          "cep": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar CEP do imóvel"
          },
          "endereco": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar endereço do imóvel"
          },
          "numeroendereco": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar nº do endereço do imóvel"
          },
          "complemento": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar o complemento de endereço do imóvel"
          },
          "bairro": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar bairro do imóvel"
          },
          "cidade": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar cidade do imóvel"
          },
          "estado": {
            "type": "string",
            "format": "string",
            "example": "OPCIONAL: Enviar estado do imóvel"
          }
        }
      }
    },
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "chave",
        "in": "header"
      },
      "codigoacesso": {
        "type": "apiKey",
        "name": "codigoacesso",
        "in": "header"
      }
    }
  }
}
