tiss_validator 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +53 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +53 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/exe/tiss_validate +19 -0
- data/lib/tiss/030301/tissAssinaturaDigital_v1.01.xsd +16 -0
- data/lib/tiss/030301/tissComplexTypesV3_03_01.xsd +1372 -0
- data/lib/tiss/030301/tissGuiasV3_03_01.xsd +1402 -0
- data/lib/tiss/030301/tissMonitoramentoQualidadeV3_03_01.xsd +152 -0
- data/lib/tiss/030301/tissMonitoramentoV3_03_01.xsd +511 -0
- data/lib/tiss/030301/tissSimpleTypesV3_03_01.xsd +4120 -0
- data/lib/tiss/030301/tissV3_03_01.xsd +118 -0
- data/lib/tiss/030301/tissWebServicesV3_03_01.xsd +330 -0
- data/lib/tiss/030301/xmldsig-core-schema.xsd +308 -0
- data/lib/tiss_validator.rb +16 -0
- data/lib/tiss_validator/version.rb +3 -0
- data/tiss_validator.gemspec +48 -0
- metadata +131 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: b37cfadcaf269b6f0908d87435bed9051432f052
|
4
|
+
data.tar.gz: b392024db7728b2bf14ccbdb63918e4c39aa1033
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e918c356eaa6c85de2f7dbc43f5374166b4f1f07fcf8beb33c0bfd945d3a37ac7d6082ed5781ff24c5f062c368007ba655d98ca4a5686579627fcc357b13e1bc
|
7
|
+
data.tar.gz: a8e28c5219733329613ef120b573495227464fde01e2962b6221ad007887c59f868fa2eab91573274b603efa78e69e09f07886462d1e3c9ee3b4481366a255dc
|
data/.gitignore
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
/.config
|
4
|
+
/coverage/
|
5
|
+
/InstalledFiles
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/spec/examples.txt
|
9
|
+
/test/tmp/
|
10
|
+
/test/version_tmp/
|
11
|
+
/tmp/
|
12
|
+
|
13
|
+
# Used by dotenv library to load environment variables.
|
14
|
+
# .env
|
15
|
+
|
16
|
+
## Specific to RubyMotion:
|
17
|
+
.dat*
|
18
|
+
.repl_history
|
19
|
+
build/
|
20
|
+
*.bridgesupport
|
21
|
+
build-iPhoneOS/
|
22
|
+
build-iPhoneSimulator/
|
23
|
+
|
24
|
+
## Specific to RubyMotion (use of CocoaPods):
|
25
|
+
#
|
26
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
27
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
28
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
29
|
+
#
|
30
|
+
# vendor/Pods/
|
31
|
+
|
32
|
+
## Documentation cache and generated files:
|
33
|
+
/.yardoc/
|
34
|
+
/_yardoc/
|
35
|
+
/doc/
|
36
|
+
/rdoc/
|
37
|
+
|
38
|
+
## Environment normalization:
|
39
|
+
/.bundle/
|
40
|
+
/vendor/bundle
|
41
|
+
/lib/bundler/man/
|
42
|
+
|
43
|
+
# for a library or gem, you might want to ignore these files since the code is
|
44
|
+
# intended to run in multiple environments; otherwise, check them in:
|
45
|
+
Gemfile.lock
|
46
|
+
.ruby-version
|
47
|
+
.ruby-gemset
|
48
|
+
|
49
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
50
|
+
.rvmrc
|
51
|
+
|
52
|
+
# rspec failure tracking
|
53
|
+
.rspec_status
|
data/.rspec
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2017 Abinoam P. Marques Jr.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
# TissValidator
|
2
|
+
|
3
|
+
TissValidator is a simple wrapper around Nokogiri.
|
4
|
+
Used to validate ANS TISS XML files.
|
5
|
+
|
6
|
+
*ANS*: Agência Nacional de Saúde / National Health Agency (of Brazil)
|
7
|
+
*TISS*: Troca de Informação em Saúde Suplementar / Suplementary health care providers information exchange. An ANS standard.
|
8
|
+
|
9
|
+
## Installation
|
10
|
+
|
11
|
+
Add this line to your application's Gemfile:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
gem 'tiss_validator'
|
15
|
+
```
|
16
|
+
|
17
|
+
And then execute:
|
18
|
+
|
19
|
+
$ bundle
|
20
|
+
|
21
|
+
Or install it yourself as:
|
22
|
+
|
23
|
+
$ gem install tiss_validator
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
Inside Ruby, as a module.
|
28
|
+
|
29
|
+
```ruby
|
30
|
+
TissValidator.errors(xml_file_path)
|
31
|
+
```
|
32
|
+
|
33
|
+
At the command line.
|
34
|
+
|
35
|
+
```sh
|
36
|
+
$ tiss_validate <xml_file_path>
|
37
|
+
```
|
38
|
+
|
39
|
+
## Development
|
40
|
+
|
41
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
42
|
+
|
43
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
44
|
+
|
45
|
+
## Contributing
|
46
|
+
|
47
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/Abinoam P. Marques Jr./tiss_validator.
|
48
|
+
|
49
|
+
|
50
|
+
## License
|
51
|
+
|
52
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
53
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "tiss_validator"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/exe/tiss_validate
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'tiss_validator'
|
4
|
+
|
5
|
+
file_name = ARGV.first
|
6
|
+
|
7
|
+
puts "XML File: #{file_name}"
|
8
|
+
puts "XSD Schema: #{TissValidator::TISS_SCHEMA_PATH}"
|
9
|
+
|
10
|
+
errors = TissValidator.errors(file_name)
|
11
|
+
|
12
|
+
if errors.empty?
|
13
|
+
puts "The xml file has passed validation!"
|
14
|
+
else
|
15
|
+
puts "Errors:"
|
16
|
+
puts errors
|
17
|
+
|
18
|
+
exit 1 # Exit with an error exit code
|
19
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- ***************************************************-->
|
3
|
+
<!-- *** Schema para assinaturas XML ***-->
|
4
|
+
<!-- *** a partir de certificados do padrão (X509) ***-->
|
5
|
+
<!-- *** ICP-Brasil - Projeto TISS***-->
|
6
|
+
<!-- ***************************************************-->
|
7
|
+
<!-- Schema for XML Signatures-->
|
8
|
+
<!--<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" targetNamespace="http://www.w3.org/2000/09/xmldsig#" elementFormDefault="qualified" attributeFormDefault="unqualified" version="0.1">-->
|
9
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:ns1="http://www.ans.gov.br/padroes/tiss/schemas" targetNamespace="http://www.ans.gov.br/padroes/tiss/schemas" elementFormDefault="qualified" version="0.1">
|
10
|
+
<import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/>
|
11
|
+
<complexType name="Signature">
|
12
|
+
<complexContent>
|
13
|
+
<extension base="ds:SignatureType"/>
|
14
|
+
</complexContent>
|
15
|
+
</complexType>
|
16
|
+
</schema>
|
@@ -0,0 +1,1372 @@
|
|
1
|
+
<?xml version="1.0" encoding="ISO-8859-1"?>
|
2
|
+
<!-- Defini��o dos tipos complexos - Padr�o TISS -->
|
3
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:ans="http://www.ans.gov.br/padroes/tiss/schemas" targetNamespace="http://www.ans.gov.br/padroes/tiss/schemas" elementFormDefault="qualified">
|
4
|
+
<!--VERS�O TISS 3.03.01 - TissComplexTypesV3_03_01-->
|
5
|
+
<!--<include schemaLocation="http://www.ans.gov.br/padroes/tiss/schemas/tissSimpleTypesV3_00_00.xsd"/>-->
|
6
|
+
<include schemaLocation="tissSimpleTypesV3_03_01.xsd"/>
|
7
|
+
<include schemaLocation="tissGuiasV3_03_01.xsd"/>
|
8
|
+
<complexType name="ct_anexoCabecalho">
|
9
|
+
<sequence>
|
10
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
11
|
+
<element name="numeroGuiaAnexo" type="ans:st_texto20"/>
|
12
|
+
<element name="numeroGuiaReferenciada" type="ans:st_texto20"/>
|
13
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
14
|
+
<element name="dataSolicitacao" type="ans:st_data"/>
|
15
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
16
|
+
<element name="dataAutorizacao" type="ans:st_data" minOccurs="0"/>
|
17
|
+
</sequence>
|
18
|
+
</complexType>
|
19
|
+
<complexType name="ct_anexoRecebimento">
|
20
|
+
<annotation>
|
21
|
+
<documentation> estrutura de recibo do recebimento de um lote de anexos dos prestadores</documentation>
|
22
|
+
</annotation>
|
23
|
+
<sequence>
|
24
|
+
<element name="nrProtocoloRecebimento" type="ans:st_texto12"/>
|
25
|
+
<element name="dataEnvioAnexo" type="ans:st_data"/>
|
26
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
27
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
28
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
29
|
+
<element name="qtAnexosClinicos" type="ans:st_numerico3"/>
|
30
|
+
<element name="anexosClinicos">
|
31
|
+
<complexType>
|
32
|
+
<sequence>
|
33
|
+
<choice>
|
34
|
+
<element name="anexoOPME" type="ans:ctm_autorizacaoOPME"/>
|
35
|
+
<element name="anexoQuimio" type="ans:ctm_autorizacaoQuimio"/>
|
36
|
+
<element name="anexoRadio" type="ans:ctm_autorizacaoRadio"/>
|
37
|
+
<element name="anexoSituacaoInicial" type="ans:cto_anexoSituacaoInicial" maxOccurs="100"/>
|
38
|
+
</choice>
|
39
|
+
</sequence>
|
40
|
+
</complexType>
|
41
|
+
</element>
|
42
|
+
<element name="observacao" type="ans:st_texto500" minOccurs="0"/>
|
43
|
+
</sequence>
|
44
|
+
</complexType>
|
45
|
+
<complexType name="ct_autorizacaoDados">
|
46
|
+
<sequence>
|
47
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
48
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
49
|
+
<element name="dataAutorizacao" type="ans:st_data" minOccurs="0"/>
|
50
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
51
|
+
<element name="dataValidadeSenha" type="ans:st_data" minOccurs="0"/>
|
52
|
+
</sequence>
|
53
|
+
</complexType>
|
54
|
+
<complexType name="ct_autorizacaoSADT">
|
55
|
+
<sequence>
|
56
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
57
|
+
<element name="dataAutorizacao" type="ans:st_data"/>
|
58
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
59
|
+
<element name="dataValidadeSenha" type="ans:st_data" minOccurs="0"/>
|
60
|
+
</sequence>
|
61
|
+
</complexType>
|
62
|
+
<complexType name="ct_autorizacaoInternacao">
|
63
|
+
<sequence>
|
64
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
65
|
+
<element name="dataAutorizacao" type="ans:st_data"/>
|
66
|
+
<element name="senha" type="ans:st_texto20"/>
|
67
|
+
<element name="dataValidadeSenha" type="ans:st_data" minOccurs="0"/>
|
68
|
+
</sequence>
|
69
|
+
</complexType>
|
70
|
+
<complexType name="ct_autorizacaoSolicitaStatus">
|
71
|
+
<sequence>
|
72
|
+
<element name="identificacaoSolicitacao" type="ans:ct_guiaCabecalho"/>
|
73
|
+
<element name="dadosBeneficiario" type="ans:ct_beneficiarioDados"/>
|
74
|
+
<element name="dadosContratado" type="ans:ct_contratadoDados"/>
|
75
|
+
</sequence>
|
76
|
+
</complexType>
|
77
|
+
<complexType name="ct_beneficiarioDados">
|
78
|
+
<sequence>
|
79
|
+
<element name="numeroCarteira" type="ans:st_texto20"/>
|
80
|
+
<element name="atendimentoRN" type="ans:dm_simNao"/>
|
81
|
+
<element name="nomeBeneficiario" type="ans:st_texto70"/>
|
82
|
+
<element name="numeroCNS" type="ans:st_texto15" minOccurs="0"/>
|
83
|
+
<element name="identificadorBeneficiario" type="base64Binary" minOccurs="0"/>
|
84
|
+
</sequence>
|
85
|
+
</complexType>
|
86
|
+
<complexType name="ct_contaMedicaResumo">
|
87
|
+
<annotation>
|
88
|
+
<documentation>utilizado no demonstrativo de an�lise de conta</documentation>
|
89
|
+
</annotation>
|
90
|
+
<sequence>
|
91
|
+
<element name="numeroLotePrestador" type="ans:st_texto12"/>
|
92
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
93
|
+
<element name="dataProtocolo" type="ans:st_data"/>
|
94
|
+
<element name="GlosaProtocolo" type="ans:ct_motivoGlosa" minOccurs="0"/>
|
95
|
+
<element name="situacaoProtocolo" type="ans:dm_statusProtocolo"/>
|
96
|
+
<element name="relacaoGuias" minOccurs="0" maxOccurs="unbounded">
|
97
|
+
<complexType>
|
98
|
+
<sequence>
|
99
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
100
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
101
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
102
|
+
<element name="nomeBeneficiario" type="ans:st_texto70"/>
|
103
|
+
<element name="numeroCarteira" type="ans:st_texto20"/>
|
104
|
+
<element name="dataInicioFat" type="ans:st_data"/>
|
105
|
+
<element name="horaInicioFat" type="ans:st_hora" minOccurs="0"/>
|
106
|
+
<element name="dataFimFat" type="ans:st_data" minOccurs="0"/>
|
107
|
+
<element name="horaFimFat" type="ans:st_hora" minOccurs="0"/>
|
108
|
+
<element name="motivoGlosaGuia" type="ans:ct_motivoGlosa" minOccurs="0" maxOccurs="unbounded"/>
|
109
|
+
<element name="situacaoGuia" type="ans:dm_statusProtocolo"/>
|
110
|
+
<element name="detalhesGuia" minOccurs="0" maxOccurs="unbounded">
|
111
|
+
<complexType>
|
112
|
+
<sequence>
|
113
|
+
<element name="dataRealizacao" type="ans:st_data"/>
|
114
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
115
|
+
<element name="grauParticipacao" type="ans:dm_grauPart" minOccurs="0"/>
|
116
|
+
<element name="valorInformado" type="ans:st_decimal8-2"/>
|
117
|
+
<element name="qtdExecutada" type="ans:st_decimal8-4"/>
|
118
|
+
<element name="valorProcessado" type="ans:st_decimal8-2"/>
|
119
|
+
<element name="valorLiberado" type="ans:st_decimal8-2"/>
|
120
|
+
<element name="relacaoGlosa" minOccurs="0" maxOccurs="unbounded">
|
121
|
+
<complexType>
|
122
|
+
<sequence>
|
123
|
+
<element name="valorGlosa" type="ans:st_decimal8-2"/>
|
124
|
+
<element name="tipoGlosa" type="ans:dm_tipoGlosa"/>
|
125
|
+
</sequence>
|
126
|
+
</complexType>
|
127
|
+
</element>
|
128
|
+
</sequence>
|
129
|
+
</complexType>
|
130
|
+
</element>
|
131
|
+
<!-- TOTAIS DA GUIA -->
|
132
|
+
<element name="valorInformadoGuia" type="ans:st_decimal10-2"/>
|
133
|
+
<element name="valorProcessadoGuia" type="ans:st_decimal10-2"/>
|
134
|
+
<element name="valorLiberadoGuia" type="ans:st_decimal10-2"/>
|
135
|
+
<element name="valorGlosaGuia" type="ans:st_decimal10-2" minOccurs="0"/>
|
136
|
+
</sequence>
|
137
|
+
</complexType>
|
138
|
+
</element>
|
139
|
+
<!-- TOTAIS DO PROTOCOLO -->
|
140
|
+
<element name="valorInformadoProtocolo" type="ans:st_decimal10-2"/>
|
141
|
+
<element name="valorProcessadoProtocolo" type="ans:st_decimal10-2"/>
|
142
|
+
<element name="valorLiberadoProtocolo" type="ans:st_decimal10-2"/>
|
143
|
+
<element name="valorGlosaProtocolo" type="ans:st_decimal10-2" minOccurs="0"/>
|
144
|
+
</sequence>
|
145
|
+
</complexType>
|
146
|
+
<complexType name="ct_contratadoDados">
|
147
|
+
<sequence>
|
148
|
+
<choice>
|
149
|
+
<element name="codigoPrestadorNaOperadora" type="ans:st_texto14"/>
|
150
|
+
<element name="cpfContratado" type="ans:st_CPF"/>
|
151
|
+
<element name="cnpjContratado" type="ans:st_CNPJ"/>
|
152
|
+
</choice>
|
153
|
+
<element name="nomeContratado" type="ans:st_texto70"/>
|
154
|
+
</sequence>
|
155
|
+
</complexType>
|
156
|
+
<complexType name="ct_contratadoProfissionalDados">
|
157
|
+
<sequence>
|
158
|
+
<element name="nomeProfissional" type="ans:st_texto70" minOccurs="0"/>
|
159
|
+
<element name="conselhoProfissional" type="ans:dm_conselhoProfissional"/>
|
160
|
+
<element name="numeroConselhoProfissional" type="ans:st_texto15"/>
|
161
|
+
<element name="UF" type="ans:dm_UF"/>
|
162
|
+
<element name="CBOS" type="ans:dm_CBOS"/>
|
163
|
+
</sequence>
|
164
|
+
</complexType>
|
165
|
+
<complexType name="ct_creditoOdonto">
|
166
|
+
<sequence>
|
167
|
+
<element name="valorCredito" type="ans:st_decimal8-2"/>
|
168
|
+
<element name="descricao" type="ans:st_texto40"/>
|
169
|
+
</sequence>
|
170
|
+
</complexType>
|
171
|
+
<complexType name="ct_dadosResumoDemonstrativo">
|
172
|
+
<sequence>
|
173
|
+
<element name="dataProtocolo" type="ans:st_data"/>
|
174
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
175
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
176
|
+
<element name="valorInformado" type="ans:st_decimal10-2"/>
|
177
|
+
<element name="valorProcessado" type="ans:st_decimal10-2"/>
|
178
|
+
<element name="valorLiberado" type="ans:st_decimal10-2"/>
|
179
|
+
<element name="valorGlosa" type="ans:st_decimal10-2" minOccurs="0"/>
|
180
|
+
</sequence>
|
181
|
+
</complexType>
|
182
|
+
<complexType name="ct_dadosComplementaresBeneficiario">
|
183
|
+
<sequence>
|
184
|
+
<element name="peso" type="ans:st_decimal5-2"/>
|
185
|
+
<element name="altura" type="ans:st_decimal5-2"/>
|
186
|
+
<element name="superficieCorporal" type="ans:st_decimal4-2"/>
|
187
|
+
<element name="idade" type="ans:st_numerico3"/>
|
188
|
+
<element name="sexo" type="ans:dm_sexo"/>
|
189
|
+
</sequence>
|
190
|
+
</complexType>
|
191
|
+
<complexType name="ct_dadosComplementaresBeneficiarioRadio">
|
192
|
+
<sequence>
|
193
|
+
<element name="idade" type="ans:st_numerico3"/>
|
194
|
+
<element name="sexo" type="ans:dm_sexo"/>
|
195
|
+
</sequence>
|
196
|
+
</complexType>
|
197
|
+
<complexType name="ct_demonstrativoCabecalho">
|
198
|
+
<sequence>
|
199
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
200
|
+
<element name="numeroDemonstrativo" type="ans:st_texto20"/>
|
201
|
+
<element name="nomeOperadora" type="ans:st_texto70"/>
|
202
|
+
<element name="numeroCNPJ" type="ans:st_CNPJ"/>
|
203
|
+
<element name="dataEmissao" type="ans:st_data"/>
|
204
|
+
</sequence>
|
205
|
+
</complexType>
|
206
|
+
<complexType name="ct_demonstrativoRetorno">
|
207
|
+
<choice>
|
208
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
209
|
+
<element name="demonstrativoAnaliseConta" type="ans:ctm_demonstrativoAnaliseConta" maxOccurs="30"/>
|
210
|
+
<element name="demonstrativoPagamento" type="ans:ctm_demonstrativoPagamento"/>
|
211
|
+
<element name="demonstrativoPagamentoOdonto" type="ans:cto_demonstrativoOdontologia"/>
|
212
|
+
<element name="situacaoDemonstrativoRetorno">
|
213
|
+
<complexType>
|
214
|
+
<sequence>
|
215
|
+
<element name="identificacaoOperadora" type="ans:st_registroANS"/>
|
216
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
217
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
218
|
+
<element name="protocoloSolicitacaoDemonstrativo" type="ans:st_texto12"/>
|
219
|
+
<element name="tipoDemonstrativo" type="ans:dm_tipoDemonstrativo"/>
|
220
|
+
<element name="dataSituacaoDemonstrativo" type="ans:st_data"/>
|
221
|
+
<element name="situacaoDemonstrativo" type="ans:dm_statusProtocolo"/>
|
222
|
+
</sequence>
|
223
|
+
</complexType>
|
224
|
+
</element>
|
225
|
+
</choice>
|
226
|
+
</complexType>
|
227
|
+
<complexType name="ct_demonstrativoSolicitacao">
|
228
|
+
<annotation>
|
229
|
+
<documentation>estrutura para solicita��o de demonstrativo de pagamento</documentation>
|
230
|
+
</annotation>
|
231
|
+
<choice>
|
232
|
+
<element name="demonstrativoPagamento">
|
233
|
+
<complexType>
|
234
|
+
<sequence>
|
235
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
236
|
+
<element name="dataSolicitacao" type="ans:st_data"/>
|
237
|
+
<element name="tipoDemonstrativo" type="ans:dm_tipoDemonstrativoPagamento"/>
|
238
|
+
<element name="periodo">
|
239
|
+
<complexType>
|
240
|
+
<choice>
|
241
|
+
<element name="dataPagamento" type="ans:st_data"/>
|
242
|
+
<element name="competencia" type="ans:st_competencia"/>
|
243
|
+
</choice>
|
244
|
+
</complexType>
|
245
|
+
</element>
|
246
|
+
</sequence>
|
247
|
+
</complexType>
|
248
|
+
</element>
|
249
|
+
<element name="demonstrativoAnalise">
|
250
|
+
<complexType>
|
251
|
+
<sequence>
|
252
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
253
|
+
<element name="dataSolicitacao" type="ans:st_data"/>
|
254
|
+
<element name="protocolos">
|
255
|
+
<complexType>
|
256
|
+
<sequence>
|
257
|
+
<element name="numeroProtocolo" type="ans:st_texto12" maxOccurs="30"/>
|
258
|
+
</sequence>
|
259
|
+
</complexType>
|
260
|
+
</element>
|
261
|
+
</sequence>
|
262
|
+
</complexType>
|
263
|
+
</element>
|
264
|
+
</choice>
|
265
|
+
</complexType>
|
266
|
+
<complexType name="ct_diagnostico">
|
267
|
+
<sequence>
|
268
|
+
<element name="tabelaDiagnostico" type="ans:dm_tabelasDiagnostico"/>
|
269
|
+
<element name="codigoDiagnostico" type="ans:st_texto4"/>
|
270
|
+
<element name="descricaoDiagnostico" type="ans:st_texto150"/>
|
271
|
+
</sequence>
|
272
|
+
</complexType>
|
273
|
+
<complexType name="ct_diagnosticoOncologico">
|
274
|
+
<sequence>
|
275
|
+
<element name="dataDiagnostico" type="ans:st_data" minOccurs="0"/>
|
276
|
+
<element name="diagnosticoCID" type="ans:st_texto4" minOccurs="0" maxOccurs="4"/>
|
277
|
+
<element name="estadiamento" type="ans:dm_estadiamento"/>
|
278
|
+
<element name="finalidade" type="ans:dm_finalidadeTratamento"/>
|
279
|
+
<element name="ecog" type="ans:dm_ecog"/>
|
280
|
+
<element name="diagnosticoHispatologico" type="ans:st_texto1000" minOccurs="0"/>
|
281
|
+
<element name="infoRelevantes" type="ans:st_texto1000" minOccurs="0"/>
|
282
|
+
</sequence>
|
283
|
+
</complexType>
|
284
|
+
<complexType name="ct_descontos">
|
285
|
+
<sequence>
|
286
|
+
<element name="indicador" type="ans:dm_debitoCreditoIndicador"/>
|
287
|
+
<element name="tipoDebitoCredito" type="ans:dm_debitoCreditoTipo"/>
|
288
|
+
<element name="descricaoDbCr" type="ans:st_texto40"/>
|
289
|
+
<element name="valorDbCr" type="ans:st_decimal8-2"/>
|
290
|
+
</sequence>
|
291
|
+
</complexType>
|
292
|
+
<complexType name="ct_drogasSolicitadas">
|
293
|
+
<sequence>
|
294
|
+
<element name="dataProvavel" type="ans:st_data"/>
|
295
|
+
<element name="identificacao" type="ans:ct_procedimentoDados"/>
|
296
|
+
<element name="qtDoses" type="ans:st_decimal7-2"/>
|
297
|
+
<element name="unidadeMedida" type="ans:dm_unidadeMedida"/>
|
298
|
+
<element name="viaAdministracao" type="ans:dm_viaAdministracao"/>
|
299
|
+
<element name="frequencia" type="ans:st_numerico2"/>
|
300
|
+
</sequence>
|
301
|
+
</complexType>
|
302
|
+
<complexType name="ct_elegibilidadeRecibo">
|
303
|
+
<sequence>
|
304
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
305
|
+
<element name="numeroCarteira" type="ans:st_texto20"/>
|
306
|
+
<element name="validadeCarteira" type="ans:st_data" minOccurs="0"/>
|
307
|
+
<element name="nomeBeneficiario" type="ans:st_texto70"/>
|
308
|
+
<element name="numeroCNS" type="ans:st_texto15" minOccurs="0"/>
|
309
|
+
<element name="identificadorBeneficiario" type="base64Binary" minOccurs="0"/>
|
310
|
+
<element name="respostaSolicitacao" type="ans:dm_simNao"/>
|
311
|
+
<element name="motivosNegativa" minOccurs="0">
|
312
|
+
<complexType>
|
313
|
+
<sequence>
|
314
|
+
<element name="motivoNegativa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
315
|
+
</sequence>
|
316
|
+
</complexType>
|
317
|
+
</element>
|
318
|
+
</sequence>
|
319
|
+
</complexType>
|
320
|
+
<complexType name="ct_glosaRecibo">
|
321
|
+
<annotation>
|
322
|
+
<documentation>recibo de recurso de glosa</documentation>
|
323
|
+
</annotation>
|
324
|
+
<sequence>
|
325
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
326
|
+
<element name="numeroGuiaRecGlosaPrestador" type="ans:st_texto20"/>
|
327
|
+
<element name="numeroGuiaRecGlosaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
328
|
+
<element name="nomeOperadora" type="ans:st_texto70"/>
|
329
|
+
<element name="objetoRecurso" type="ans:dm_objetoRecurso"/>
|
330
|
+
<element name="dadosContratado">
|
331
|
+
<complexType>
|
332
|
+
<sequence>
|
333
|
+
<element name="codigoPrestador" type="ans:st_texto14"/>
|
334
|
+
<element name="nomePrestador" type="ans:st_texto70"/>
|
335
|
+
</sequence>
|
336
|
+
</complexType>
|
337
|
+
</element>
|
338
|
+
<element name="numeroLote" type="ans:st_numerico12"/>
|
339
|
+
<element name="numeroProtocolo" type="ans:st_numerico12"/>
|
340
|
+
<element name="opcaoRecurso">
|
341
|
+
<complexType>
|
342
|
+
<choice>
|
343
|
+
<element name="recursoProtocolo">
|
344
|
+
<complexType>
|
345
|
+
<sequence>
|
346
|
+
<element name="codigoGlosaProtocolo" type="ans:dm_tipoGlosa"/>
|
347
|
+
<element name="justificativaProtocolo" type="ans:st_texto150"/>
|
348
|
+
<element name="recursoAcatado" type="ans:dm_simNao"/>
|
349
|
+
<element name="justificativaOPSnaoAcatadoProt" type="ans:st_texto150" minOccurs="0"/>
|
350
|
+
</sequence>
|
351
|
+
</complexType>
|
352
|
+
</element>
|
353
|
+
<element name="recursoGuia" maxOccurs="unbounded">
|
354
|
+
<complexType>
|
355
|
+
<choice>
|
356
|
+
<element name="respostaGuia" type="ans:ct_respostaGlosaGuiaMedica"/>
|
357
|
+
<element name="respostaGuiaItens" type="ans:ct_respostaGlosaItemMedico"/>
|
358
|
+
</choice>
|
359
|
+
</complexType>
|
360
|
+
</element>
|
361
|
+
</choice>
|
362
|
+
</complexType>
|
363
|
+
</element>
|
364
|
+
<element name="dataRecurso" type="ans:st_data"/>
|
365
|
+
<element name="valorTotalRecursado" type="ans:st_decimal10-2"/>
|
366
|
+
<element name="valorTotalAcatado" type="ans:st_decimal10-2"/>
|
367
|
+
</sequence>
|
368
|
+
</complexType>
|
369
|
+
<complexType name="ct_glosaReciboOdonto">
|
370
|
+
<annotation>
|
371
|
+
<documentation>retorno do recurso de glosa de odonto</documentation>
|
372
|
+
</annotation>
|
373
|
+
<sequence>
|
374
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
375
|
+
<element name="numeroGuiaRecGlosaPrestador" type="ans:st_texto20"/>
|
376
|
+
<element name="nomeOperadora" type="ans:st_texto70"/>
|
377
|
+
<element name="numeroGuiaRecGlosaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
378
|
+
<element name="objetoRecurso" type="ans:dm_objetoRecurso"/>
|
379
|
+
<element name="dadosContratado">
|
380
|
+
<complexType>
|
381
|
+
<sequence>
|
382
|
+
<element name="codigoPrestador" type="ans:st_texto14"/>
|
383
|
+
<element name="nomePrestador" type="ans:st_texto70"/>
|
384
|
+
</sequence>
|
385
|
+
</complexType>
|
386
|
+
</element>
|
387
|
+
<element name="numeroLote" type="ans:st_numerico12"/>
|
388
|
+
<element name="numeroProtocolo" type="ans:st_numerico12"/>
|
389
|
+
<element name="opcaoRecurso">
|
390
|
+
<complexType>
|
391
|
+
<choice>
|
392
|
+
<element name="recursoProtocolo">
|
393
|
+
<complexType>
|
394
|
+
<sequence>
|
395
|
+
<element name="codigoGlosaProtocolo" type="ans:dm_tipoGlosa"/>
|
396
|
+
<element name="justificativaProtocolo" type="ans:st_texto150"/>
|
397
|
+
<element name="recursoAcatado" type="ans:dm_simNao"/>
|
398
|
+
</sequence>
|
399
|
+
</complexType>
|
400
|
+
</element>
|
401
|
+
<element name="recursoGuia" maxOccurs="unbounded">
|
402
|
+
<complexType>
|
403
|
+
<choice>
|
404
|
+
<element name="respostaRecursoGuiaOdonto" type="ans:ct_respostaRecursoGuiaOdonto"/>
|
405
|
+
<element name="respostaRecursoItemOdonto" type="ans:ct_respostaRecursoItemOdonto"/>
|
406
|
+
</choice>
|
407
|
+
</complexType>
|
408
|
+
</element>
|
409
|
+
</choice>
|
410
|
+
</complexType>
|
411
|
+
</element>
|
412
|
+
<element name="dataRecurso" type="ans:st_data"/>
|
413
|
+
<element name="valorTotalRecursado" type="ans:st_decimal10-2"/>
|
414
|
+
<element name="valorTotalAcatado" type="ans:st_decimal10-2"/>
|
415
|
+
</sequence>
|
416
|
+
</complexType>
|
417
|
+
<complexType name="ct_elegibilidadeVerifica">
|
418
|
+
<sequence>
|
419
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
420
|
+
<element name="numeroCarteira" type="ans:st_texto20"/>
|
421
|
+
<element name="nomeBeneficiario" type="ans:st_texto70"/>
|
422
|
+
<element name="numeroCNS" type="ans:st_texto15" minOccurs="0"/>
|
423
|
+
<element name="identificadorBeneficiario" type="base64Binary" minOccurs="0"/>
|
424
|
+
<element name="validadeCarteira" type="ans:st_data" minOccurs="0"/>
|
425
|
+
</sequence>
|
426
|
+
</complexType>
|
427
|
+
<complexType name="ct_fontePagadora">
|
428
|
+
<choice>
|
429
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
430
|
+
<element name="identificacaoUnidadePagadora" type="ans:st_CNPJ"/>
|
431
|
+
</choice>
|
432
|
+
</complexType>
|
433
|
+
<complexType name="ct_guiaCabecalho">
|
434
|
+
<sequence>
|
435
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
436
|
+
<!--<element name="fontePagadora" type="ans:ct_fontePagadora"/>-->
|
437
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
438
|
+
<!--<element minOccurs="0" name="numeroGuiaOperadora" type="ans:st_texto20"/>-->
|
439
|
+
</sequence>
|
440
|
+
</complexType>
|
441
|
+
<complexType name="ct_guiaCancelamento">
|
442
|
+
<sequence>
|
443
|
+
<element name="tipoGuia" type="ans:dm_tipoGuia"/>
|
444
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
445
|
+
<element name="numeroProtocolo" type="ans:st_texto12" minOccurs="0"/>
|
446
|
+
<!--<element name="dadosGuia" type="ans:ct_guiaCabecalho" />-->
|
447
|
+
<element name="guiasCancelamento" maxOccurs="unbounded">
|
448
|
+
<complexType>
|
449
|
+
<sequence>
|
450
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
451
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
452
|
+
</sequence>
|
453
|
+
</complexType>
|
454
|
+
</element>
|
455
|
+
</sequence>
|
456
|
+
</complexType>
|
457
|
+
<complexType name="ct_guiaCancelamentoRecibo">
|
458
|
+
<sequence>
|
459
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
460
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
461
|
+
<element name="guiasCanceladas">
|
462
|
+
<complexType>
|
463
|
+
<sequence>
|
464
|
+
<element name="dadosGuia" maxOccurs="unbounded">
|
465
|
+
<complexType>
|
466
|
+
<sequence>
|
467
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
468
|
+
<element name="tipoGuia" type="ans:dm_tipoGuia"/>
|
469
|
+
<element name="statusCancelamento" type="ans:dm_statusCancelamento"/>
|
470
|
+
</sequence>
|
471
|
+
</complexType>
|
472
|
+
</element>
|
473
|
+
</sequence>
|
474
|
+
</complexType>
|
475
|
+
</element>
|
476
|
+
</sequence>
|
477
|
+
</complexType>
|
478
|
+
<complexType name="ct_guiaDados">
|
479
|
+
<sequence>
|
480
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
481
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
482
|
+
<element name="dadosBeneficiario" type="ans:ct_beneficiarioDados"/>
|
483
|
+
<element name="dataRealizacao" type="ans:st_data" minOccurs="0"/>
|
484
|
+
<element name="vlInformadoGuia" type="ans:ct_valorTotal" minOccurs="0"/>
|
485
|
+
<element name="glosaGuia" minOccurs="0">
|
486
|
+
<complexType>
|
487
|
+
<sequence>
|
488
|
+
<element name="motivoGlosa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
489
|
+
</sequence>
|
490
|
+
</complexType>
|
491
|
+
</element>
|
492
|
+
<element name="procedimentosRealizados" minOccurs="0">
|
493
|
+
<complexType>
|
494
|
+
<sequence>
|
495
|
+
<element name="procedimentoRealizado" maxOccurs="unbounded">
|
496
|
+
<complexType>
|
497
|
+
<complexContent>
|
498
|
+
<extension base="ans:ct_procedimentoExecutado">
|
499
|
+
<sequence>
|
500
|
+
<element name="glosasProcedimento" minOccurs="0">
|
501
|
+
<complexType>
|
502
|
+
<sequence>
|
503
|
+
<element name="motivoGlosa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
504
|
+
<element name="valorGlosaProcedimento" type="ans:st_decimal10-2"/>
|
505
|
+
</sequence>
|
506
|
+
</complexType>
|
507
|
+
</element>
|
508
|
+
</sequence>
|
509
|
+
</extension>
|
510
|
+
</complexContent>
|
511
|
+
</complexType>
|
512
|
+
</element>
|
513
|
+
</sequence>
|
514
|
+
</complexType>
|
515
|
+
</element>
|
516
|
+
</sequence>
|
517
|
+
</complexType>
|
518
|
+
<complexType name="ct_guiaDadosAnexo">
|
519
|
+
<sequence>
|
520
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
521
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
522
|
+
<element name="dadosBeneficiario" type="ans:ct_beneficiarioDados"/>
|
523
|
+
<element name="dataEmissao_SolicitacaoAnexo" type="ans:st_data"/>
|
524
|
+
<element name="vlInformadoGuia" type="ans:ct_valorTotal"/>
|
525
|
+
<element name="glosaAnexo" minOccurs="0">
|
526
|
+
<complexType>
|
527
|
+
<sequence>
|
528
|
+
<element name="motivoGlosa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
529
|
+
<element name="vlGlosaAnexo" type="ans:st_decimal10-2"/>
|
530
|
+
</sequence>
|
531
|
+
</complexType>
|
532
|
+
</element>
|
533
|
+
<element name="procedimentosSolicitados" minOccurs="0">
|
534
|
+
<complexType>
|
535
|
+
<sequence>
|
536
|
+
<element name="procedimentoSolicitado" maxOccurs="unbounded">
|
537
|
+
<complexType>
|
538
|
+
<sequence>
|
539
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
540
|
+
<element name="opcaoFabricante" type="ans:dm_opcaoFabricante" minOccurs="0"/>
|
541
|
+
<element name="qtdSolicitada" type="ans:st_decimal5-2"/>
|
542
|
+
<element name="valorSolicitado" type="ans:st_decimal8-2" minOccurs="0"/>
|
543
|
+
<element name="qtdAutorizada" type="ans:st_decimal5-2"/>
|
544
|
+
<element name="valorAutorizado" type="ans:st_decimal8-2"/>
|
545
|
+
<element name="glosasProcedimento">
|
546
|
+
<complexType>
|
547
|
+
<sequence>
|
548
|
+
<element name="motivoGlosa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
549
|
+
<element name="valorGlosaProcedimento" type="ans:st_decimal10-2"/>
|
550
|
+
</sequence>
|
551
|
+
</complexType>
|
552
|
+
</element>
|
553
|
+
</sequence>
|
554
|
+
</complexType>
|
555
|
+
</element>
|
556
|
+
</sequence>
|
557
|
+
</complexType>
|
558
|
+
</element>
|
559
|
+
</sequence>
|
560
|
+
</complexType>
|
561
|
+
<complexType name="ct_guiaDadosOdonto">
|
562
|
+
<sequence>
|
563
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
564
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
565
|
+
<element name="numeroCarteira" type="ans:st_texto20"/>
|
566
|
+
<element name="atendimentoRN" type="ans:dm_simNao"/>
|
567
|
+
<element name="nomeBeneficiario" type="ans:st_texto70"/>
|
568
|
+
<element name="numeroCNS" type="ans:st_texto15" minOccurs="0"/>
|
569
|
+
<element name="identificadorBeneficiario" type="base64Binary" minOccurs="0"/>
|
570
|
+
<element name="vlInformadoGuia" type="ans:ct_valorTotal" minOccurs="0"/>
|
571
|
+
<element name="glosaGuia" minOccurs="0">
|
572
|
+
<complexType>
|
573
|
+
<sequence>
|
574
|
+
<element name="motivoGlosa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
575
|
+
</sequence>
|
576
|
+
</complexType>
|
577
|
+
</element>
|
578
|
+
<element name="procedimentosRealizados" minOccurs="0">
|
579
|
+
<complexType>
|
580
|
+
<sequence>
|
581
|
+
<element name="procedimentoRealizado" maxOccurs="unbounded">
|
582
|
+
<complexType>
|
583
|
+
<complexContent>
|
584
|
+
<extension base="ans:ct_procedimentoExecutadoOdonto">
|
585
|
+
<sequence>
|
586
|
+
<element name="glosasProcedimento" minOccurs="0">
|
587
|
+
<complexType>
|
588
|
+
<sequence>
|
589
|
+
<element name="motivoGlosa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
590
|
+
<element name="valorGlosaProcedimento" type="ans:st_decimal10-2"/>
|
591
|
+
</sequence>
|
592
|
+
</complexType>
|
593
|
+
</element>
|
594
|
+
</sequence>
|
595
|
+
</extension>
|
596
|
+
</complexContent>
|
597
|
+
</complexType>
|
598
|
+
</element>
|
599
|
+
</sequence>
|
600
|
+
</complexType>
|
601
|
+
</element>
|
602
|
+
</sequence>
|
603
|
+
</complexType>
|
604
|
+
<complexType name="ct_guiaRecurso">
|
605
|
+
<annotation>
|
606
|
+
<documentation>estrutura utilizada no retorno do recurso de glosa</documentation>
|
607
|
+
</annotation>
|
608
|
+
<sequence>
|
609
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
610
|
+
<element name="numDemoAnalisePagto" type="ans:st_texto12" minOccurs="0"/>
|
611
|
+
<element name="numeroGuiaRecurso" type="ans:st_texto20"/>
|
612
|
+
<element name="numeroGuiaOrigem" type="ans:st_texto20"/>
|
613
|
+
<element name="motivosGlosa" type="ans:ct_motivoGlosa" minOccurs="0" maxOccurs="unbounded"/>
|
614
|
+
</sequence>
|
615
|
+
</complexType>
|
616
|
+
<complexType name="ct_guiaRecursoLote">
|
617
|
+
<annotation>
|
618
|
+
<documentation>lote de recurso de glosa</documentation>
|
619
|
+
</annotation>
|
620
|
+
<choice>
|
621
|
+
<element name="guiaRecursoGlosaOdonto" type="ans:cto_recursoGlosaOdonto"/>
|
622
|
+
<element name="guiaRecursoGlosa" type="ans:ctm_recursoGlosa"/>
|
623
|
+
</choice>
|
624
|
+
</complexType>
|
625
|
+
<complexType name="ct_guiaValorTotal">
|
626
|
+
<sequence>
|
627
|
+
<element name="valorProcedimentos" type="ans:st_decimal10-2" minOccurs="0"/>
|
628
|
+
<element name="valorDiarias" type="ans:st_decimal10-2" minOccurs="0"/>
|
629
|
+
<element name="valorTaxasAlugueis" type="ans:st_decimal10-2" minOccurs="0"/>
|
630
|
+
<element name="valorMateriais" type="ans:st_decimal10-2" minOccurs="0"/>
|
631
|
+
<element name="valorMedicamentos" type="ans:st_decimal10-2" minOccurs="0"/>
|
632
|
+
<element name="valorOPME" type="ans:st_decimal10-2" minOccurs="0"/>
|
633
|
+
<element name="valorGasesMedicinais" type="ans:st_decimal10-2" minOccurs="0"/>
|
634
|
+
<element name="valorTotalGeral" type="ans:st_decimal10-2"/>
|
635
|
+
</sequence>
|
636
|
+
</complexType>
|
637
|
+
<complexType name="ct_guiaValorTotalSADT">
|
638
|
+
<sequence>
|
639
|
+
<element name="valorProcedimentos" type="ans:st_decimal10-2" minOccurs="0"/>
|
640
|
+
<element name="valorTaxasAlugueis" type="ans:st_decimal10-2" minOccurs="0"/>
|
641
|
+
<element name="valorMateriais" type="ans:st_decimal10-2" minOccurs="0"/>
|
642
|
+
<element name="valorMedicamentos" type="ans:st_decimal10-2" minOccurs="0"/>
|
643
|
+
<element name="valorOPME" type="ans:st_decimal10-2" minOccurs="0"/>
|
644
|
+
<element name="valorGasesMedicinais" type="ans:st_decimal10-2" minOccurs="0"/>
|
645
|
+
<element name="valorTotalGeral" type="ans:st_decimal10-2"/>
|
646
|
+
</sequence>
|
647
|
+
</complexType>
|
648
|
+
<complexType name="ct_hipoteseDiagnostica">
|
649
|
+
<sequence>
|
650
|
+
<element name="diagnostico" type="ans:ct_diagnostico"/>
|
651
|
+
<element name="indicacaoAcidente" type="ans:dm_indicadorAcidente"/>
|
652
|
+
</sequence>
|
653
|
+
</complexType>
|
654
|
+
<complexType name="ct_identEquipe">
|
655
|
+
<sequence>
|
656
|
+
<element name="grauPart" type="ans:dm_grauPart"/>
|
657
|
+
<element name="codProfissional">
|
658
|
+
<complexType>
|
659
|
+
<choice>
|
660
|
+
<element name="codigoPrestadorNaOperadora" type="ans:st_texto14"/>
|
661
|
+
<element name="cpfContratado" type="ans:st_CPF"/>
|
662
|
+
</choice>
|
663
|
+
</complexType>
|
664
|
+
</element>
|
665
|
+
<element name="nomeProf" type="ans:st_texto70"/>
|
666
|
+
<element name="conselho" type="ans:dm_conselhoProfissional"/>
|
667
|
+
<element name="numeroConselhoProfissional" type="ans:st_texto15"/>
|
668
|
+
<element name="UF" type="ans:dm_UF"/>
|
669
|
+
<element name="CBOS" type="ans:dm_CBOS"/>
|
670
|
+
</sequence>
|
671
|
+
</complexType>
|
672
|
+
<complexType name="ct_identEquipeSADT">
|
673
|
+
<sequence>
|
674
|
+
<element name="grauPart" type="ans:dm_grauPart" minOccurs="0"/>
|
675
|
+
<element name="codProfissional">
|
676
|
+
<complexType>
|
677
|
+
<choice>
|
678
|
+
<element name="codigoPrestadorNaOperadora" type="ans:st_texto14"/>
|
679
|
+
<element name="cpfContratado" type="ans:st_CPF"/>
|
680
|
+
</choice>
|
681
|
+
</complexType>
|
682
|
+
</element>
|
683
|
+
<element name="nomeProf" type="ans:st_texto70"/>
|
684
|
+
<element name="conselho" type="ans:dm_conselhoProfissional"/>
|
685
|
+
<element name="numeroConselhoProfissional" type="ans:st_texto15"/>
|
686
|
+
<element name="UF" type="ans:dm_UF"/>
|
687
|
+
<element name="CBOS" type="ans:dm_CBOS"/>
|
688
|
+
</sequence>
|
689
|
+
</complexType>
|
690
|
+
<complexType name="ct_intervaloCiclos">
|
691
|
+
<sequence>
|
692
|
+
<element name="tempo" type="ans:st_numerico2"/>
|
693
|
+
<element name="unidade" type="ans:dm_unidadeTempoCiclo"/>
|
694
|
+
</sequence>
|
695
|
+
</complexType>
|
696
|
+
<complexType name="ct_loteStatus">
|
697
|
+
<annotation>
|
698
|
+
<documentation>resposta a uma solicita��o de situa��o de protocolo</documentation>
|
699
|
+
</annotation>
|
700
|
+
<sequence>
|
701
|
+
<element name="statusProtocolo" type="ans:dm_statusProtocolo"/>
|
702
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
703
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
704
|
+
<element name="dataEnvioLote" type="ans:st_data"/>
|
705
|
+
<element name="valorTotalLote" type="ans:ct_valorTotal"/>
|
706
|
+
<element name="guiasTISS">
|
707
|
+
<complexType>
|
708
|
+
<choice>
|
709
|
+
<element name="guiasMedicas" maxOccurs="unbounded">
|
710
|
+
<complexType>
|
711
|
+
<sequence>
|
712
|
+
<element name="guias" type="ans:ct_guiaDados"/>
|
713
|
+
</sequence>
|
714
|
+
</complexType>
|
715
|
+
</element>
|
716
|
+
<element name="guiasOdonto" maxOccurs="unbounded">
|
717
|
+
<complexType>
|
718
|
+
<sequence>
|
719
|
+
<element name="guias" type="ans:ct_guiaDadosOdonto"/>
|
720
|
+
</sequence>
|
721
|
+
</complexType>
|
722
|
+
</element>
|
723
|
+
</choice>
|
724
|
+
</complexType>
|
725
|
+
</element>
|
726
|
+
</sequence>
|
727
|
+
</complexType>
|
728
|
+
<complexType name="ct_loteAnexoStatus">
|
729
|
+
<annotation>
|
730
|
+
<documentation>resposta a uma solicita��o de situa��o de protocolo</documentation>
|
731
|
+
</annotation>
|
732
|
+
<sequence>
|
733
|
+
<element name="statusProtocolo" type="ans:dm_statusProtocolo"/>
|
734
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
735
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
736
|
+
<element name="dataEnvioLote" type="ans:st_data"/>
|
737
|
+
<element name="anexosClinicos">
|
738
|
+
<complexType>
|
739
|
+
<choice>
|
740
|
+
<element name="anexoOPME" type="ans:ctm_autorizacaoOPME"/>
|
741
|
+
<element name="anexoQuimio" type="ans:ctm_autorizacaoQuimio"/>
|
742
|
+
<element name="anexoRadio" type="ans:ctm_autorizacaoRadio"/>
|
743
|
+
</choice>
|
744
|
+
</complexType>
|
745
|
+
</element>
|
746
|
+
</sequence>
|
747
|
+
</complexType>
|
748
|
+
<complexType name="ct_motivoGlosa">
|
749
|
+
<sequence>
|
750
|
+
<element name="codigoGlosa" type="ans:dm_tipoGlosa"/>
|
751
|
+
<element name="descricaoGlosa" type="ans:st_texto500" minOccurs="0"/>
|
752
|
+
</sequence>
|
753
|
+
</complexType>
|
754
|
+
<complexType name="ct_opmeDados">
|
755
|
+
<sequence>
|
756
|
+
<element name="identificacaoOPME" type="ans:ct_procedimentoDados"/>
|
757
|
+
<element name="nomeFabricante" type="ans:st_texto70"/>
|
758
|
+
</sequence>
|
759
|
+
</complexType>
|
760
|
+
<complexType name="ct_opmUtilizada">
|
761
|
+
<sequence>
|
762
|
+
<element name="OPM">
|
763
|
+
<complexType>
|
764
|
+
<sequence>
|
765
|
+
<element name="identificacaoOPM" maxOccurs="unbounded">
|
766
|
+
<complexType>
|
767
|
+
<sequence>
|
768
|
+
<element name="identificacaoOPME" type="ans:ct_procedimentoDados"/>
|
769
|
+
<element name="quantidade" type="ans:st_numerico2"/>
|
770
|
+
<element name="codigoBarra" type="ans:st_texto20" minOccurs="0"/>
|
771
|
+
<element name="valorUnitario" type="ans:st_decimal8-2" minOccurs="0"/>
|
772
|
+
<element name="valorTotal" type="ans:st_decimal8-2" minOccurs="0"/>
|
773
|
+
</sequence>
|
774
|
+
</complexType>
|
775
|
+
</element>
|
776
|
+
</sequence>
|
777
|
+
</complexType>
|
778
|
+
</element>
|
779
|
+
<element name="valorTotalOPM" type="ans:st_decimal8-2" minOccurs="0"/>
|
780
|
+
</sequence>
|
781
|
+
</complexType>
|
782
|
+
<complexType name="ct_outrasDespesas">
|
783
|
+
<sequence>
|
784
|
+
<element name="despesa" maxOccurs="unbounded">
|
785
|
+
<complexType>
|
786
|
+
<sequence>
|
787
|
+
<element name="codigoDespesa" type="ans:dm_outrasDespesas"/>
|
788
|
+
<element name="servicosExecutados" type="ans:ct_procedimentoExecutadoOutras"/>
|
789
|
+
</sequence>
|
790
|
+
</complexType>
|
791
|
+
</element>
|
792
|
+
</sequence>
|
793
|
+
</complexType>
|
794
|
+
<complexType name="ct_pagamentoDados">
|
795
|
+
<sequence>
|
796
|
+
<element name="dataPagamento" type="ans:st_data"/>
|
797
|
+
<element name="formaPagamento" type="ans:dm_formaPagamento"/>
|
798
|
+
<element name="banco" type="ans:st_texto4" minOccurs="0"/>
|
799
|
+
<element name="agencia" type="ans:st_texto7" minOccurs="0"/>
|
800
|
+
<element name="nrContaCheque" type="ans:st_texto20" minOccurs="0"/>
|
801
|
+
</sequence>
|
802
|
+
</complexType>
|
803
|
+
<complexType name="ct_pagamentoResumo">
|
804
|
+
<sequence>
|
805
|
+
<element name="numeroFatura" type="ans:st_texto12" minOccurs="0"/>
|
806
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
807
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
808
|
+
<element name="valorTotalLote" type="ans:ct_valorTotal"/>
|
809
|
+
</sequence>
|
810
|
+
</complexType>
|
811
|
+
<complexType name="ct_prestadorIdentificacao">
|
812
|
+
<choice>
|
813
|
+
<element name="CNPJ" type="ans:st_CNPJ"/>
|
814
|
+
<element name="CPF" type="ans:st_CPF"/>
|
815
|
+
<element name="codigoPrestadorNaOperadora" type="ans:st_texto14"/>
|
816
|
+
</choice>
|
817
|
+
</complexType>
|
818
|
+
<complexType name="ct_loginSenha">
|
819
|
+
<sequence>
|
820
|
+
<element name="loginPrestador" type="ans:st_texto20"/>
|
821
|
+
<element name="senhaPrestador" type="ans:st_texto32"/>
|
822
|
+
</sequence>
|
823
|
+
</complexType>
|
824
|
+
<complexType name="ct_procedimentoAutorizado">
|
825
|
+
<sequence>
|
826
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
827
|
+
<element name="quantidadeSolicitada" type="ans:st_numerico3"/>
|
828
|
+
<element name="quantidadeAutorizada" type="ans:st_numerico3"/>
|
829
|
+
<element name="valorSolicitado" type="ans:st_decimal8-2" minOccurs="0"/>
|
830
|
+
<element name="valorAutorizado" type="ans:st_decimal8-2" minOccurs="0"/>
|
831
|
+
<element name="opcaoFabricante" type="ans:dm_opcaoFabricante" minOccurs="0"/>
|
832
|
+
<element name="registroANVISA" type="ans:st_texto15" minOccurs="0"/>
|
833
|
+
<element name="codigoRefFabricante" type="ans:st_texto60" minOccurs="0"/>
|
834
|
+
<element name="autorizacaoFuncionamento" type="ans:st_texto30" minOccurs="0"/>
|
835
|
+
<element name="motivosNegativa" minOccurs="0">
|
836
|
+
<complexType>
|
837
|
+
<sequence>
|
838
|
+
<element name="motivoNegativa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
839
|
+
</sequence>
|
840
|
+
</complexType>
|
841
|
+
</element>
|
842
|
+
</sequence>
|
843
|
+
</complexType>
|
844
|
+
<complexType name="ct_procedimentosComplementares">
|
845
|
+
<sequence>
|
846
|
+
<element name="dataProvavel" type="ans:st_data"/>
|
847
|
+
<element name="identificacao" type="ans:ct_procedimentoDados"/>
|
848
|
+
<element name="quantidade" type="ans:st_decimal5-2"/>
|
849
|
+
</sequence>
|
850
|
+
</complexType>
|
851
|
+
<complexType name="ct_procedimentoDados">
|
852
|
+
<sequence>
|
853
|
+
<element name="codigoTabela" type="ans:dm_tabela"/>
|
854
|
+
<element name="codigoProcedimento" type="ans:st_texto10"/>
|
855
|
+
<element name="descricaoProcedimento" type="ans:st_texto150"/>
|
856
|
+
</sequence>
|
857
|
+
</complexType>
|
858
|
+
<complexType name="ct_procedimentoExecutado">
|
859
|
+
<sequence>
|
860
|
+
<element name="dataExecucao" type="ans:st_data"/>
|
861
|
+
<element name="horaInicial" type="ans:st_hora" minOccurs="0"/>
|
862
|
+
<element name="horaFinal" type="ans:st_hora" minOccurs="0"/>
|
863
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
864
|
+
<element name="unidadeMedida" type="ans:dm_unidadeMedida" minOccurs="0"/>
|
865
|
+
<element name="quantidadeExecutada" type="ans:st_decimal8-4"/>
|
866
|
+
<element name="viaAcesso" type="ans:dm_viaDeAcesso" minOccurs="0"/>
|
867
|
+
<element name="tecnicaUtilizada" type="ans:dm_tecnicaUtilizada" minOccurs="0"/>
|
868
|
+
<element name="valorUnitario" type="ans:st_decimal8-2"/>
|
869
|
+
<element name="valorTotal" type="ans:st_decimal8-2"/>
|
870
|
+
<element name="codigoDespesa" type="ans:dm_outrasDespesas" minOccurs="0"/>
|
871
|
+
<element name="fatorReducaoAcrescimo" type="ans:st_decimal3-2" minOccurs="0"/>
|
872
|
+
</sequence>
|
873
|
+
</complexType>
|
874
|
+
<complexType name="ct_procedimentoExecutadoOdonto">
|
875
|
+
<sequence>
|
876
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
877
|
+
<element name="denteRegiao" minOccurs="0">
|
878
|
+
<complexType>
|
879
|
+
<choice>
|
880
|
+
<element name="codDente" type="ans:dm_dente"/>
|
881
|
+
<element name="codRegiao" type="ans:dm_regiao"/>
|
882
|
+
</choice>
|
883
|
+
</complexType>
|
884
|
+
</element>
|
885
|
+
<element name="denteFace" type="ans:dm_face" minOccurs="0"/>
|
886
|
+
<element name="qtdProc" type="ans:st_numerico2" minOccurs="0"/>
|
887
|
+
<element name="qtdUS" type="ans:st_decimal8-2" minOccurs="0"/>
|
888
|
+
<element name="valorProc" type="ans:st_decimal8-2" minOccurs="0"/>
|
889
|
+
<element name="valorFranquia" type="ans:st_decimal8-2" minOccurs="0"/>
|
890
|
+
<element name="autorizado" type="ans:dm_simNao" minOccurs="0"/>
|
891
|
+
<element name="dataRealizacao" type="ans:st_data"/>
|
892
|
+
</sequence>
|
893
|
+
</complexType>
|
894
|
+
<complexType name="ct_procedimentoExecutadoOutras">
|
895
|
+
<sequence>
|
896
|
+
<element name="dataExecucao" type="ans:st_data"/>
|
897
|
+
<element name="horaInicial" type="ans:st_hora" minOccurs="0"/>
|
898
|
+
<element name="horaFinal" type="ans:st_hora" minOccurs="0"/>
|
899
|
+
<element name="codigoTabela" type="ans:dm_tabela"/>
|
900
|
+
<element name="codigoProcedimento" type="ans:st_texto10"/>
|
901
|
+
<element name="quantidadeExecutada" type="ans:st_decimal7-4"/>
|
902
|
+
<element name="unidadeMedida" type="ans:dm_unidadeMedida"/>
|
903
|
+
<element name="reducaoAcrescimo" type="ans:st_decimal3-2"/>
|
904
|
+
<element name="valorUnitario" type="ans:st_decimal8-2"/>
|
905
|
+
<element name="valorTotal" type="ans:st_decimal8-2"/>
|
906
|
+
<element name="descricaoProcedimento" type="ans:st_texto150"/>
|
907
|
+
<element name="registroANVISA" type="ans:st_texto15" minOccurs="0"/>
|
908
|
+
<element name="codigoRefFabricante" type="ans:st_texto60" minOccurs="0"/>
|
909
|
+
<element name="autorizacaoFuncionamento" type="ans:st_texto30" minOccurs="0"/>
|
910
|
+
</sequence>
|
911
|
+
</complexType>
|
912
|
+
<complexType name="ct_procedimentoExecutadoInt">
|
913
|
+
<sequence>
|
914
|
+
<element name="dataExecucao" type="ans:st_data"/>
|
915
|
+
<element name="horaInicial" type="ans:st_hora" minOccurs="0"/>
|
916
|
+
<element name="horaFinal" type="ans:st_hora" minOccurs="0"/>
|
917
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
918
|
+
<element name="quantidadeExecutada" type="ans:st_numerico3"/>
|
919
|
+
<element name="viaAcesso" type="ans:dm_viaDeAcesso" minOccurs="0"/>
|
920
|
+
<element name="tecnicaUtilizada" type="ans:dm_tecnicaUtilizada" minOccurs="0"/>
|
921
|
+
<element name="reducaoAcrescimo" type="ans:st_decimal3-2"/>
|
922
|
+
<element name="valorUnitario" type="ans:st_decimal8-2"/>
|
923
|
+
<element name="valorTotal" type="ans:st_decimal8-2"/>
|
924
|
+
<element name="identEquipe" minOccurs="0" maxOccurs="unbounded">
|
925
|
+
<complexType>
|
926
|
+
<sequence>
|
927
|
+
<element name="identificacaoEquipe" type="ans:ct_identEquipe"/>
|
928
|
+
</sequence>
|
929
|
+
</complexType>
|
930
|
+
</element>
|
931
|
+
</sequence>
|
932
|
+
</complexType>
|
933
|
+
<complexType name="ct_procedimentoExecutadoHonorIndiv">
|
934
|
+
<sequence>
|
935
|
+
<element name="dataExecucao" type="ans:st_data"/>
|
936
|
+
<element name="horaInicial" type="ans:st_hora" minOccurs="0"/>
|
937
|
+
<element name="horaFinal" type="ans:st_hora" minOccurs="0"/>
|
938
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
939
|
+
<element name="quantidadeExecutada" type="ans:st_numerico3"/>
|
940
|
+
<element name="viaAcesso" type="ans:dm_viaDeAcesso" minOccurs="0"/>
|
941
|
+
<element name="tecnicaUtilizada" type="ans:dm_tecnicaUtilizada" minOccurs="0"/>
|
942
|
+
<element name="reducaoAcrescimo" type="ans:st_decimal3-2"/>
|
943
|
+
<element name="valorUnitario" type="ans:st_decimal8-2"/>
|
944
|
+
<element name="valorTotal" type="ans:st_decimal8-2"/>
|
945
|
+
<element name="profissionais" maxOccurs="unbounded">
|
946
|
+
<complexType>
|
947
|
+
<sequence>
|
948
|
+
<element name="grauParticipacao" type="ans:dm_grauPart"/>
|
949
|
+
<element name="codProfissional">
|
950
|
+
<complexType>
|
951
|
+
<choice>
|
952
|
+
<element name="codigoPrestadorNaOperadora" type="ans:st_texto14"/>
|
953
|
+
<element name="cpfContratado" type="ans:st_CPF"/>
|
954
|
+
</choice>
|
955
|
+
</complexType>
|
956
|
+
</element>
|
957
|
+
<element name="nomeProfissional" type="ans:st_texto70"/>
|
958
|
+
<element name="conselhoProfissional" type="ans:dm_conselhoProfissional"/>
|
959
|
+
<element name="numeroConselhoProfissional" type="ans:st_texto15"/>
|
960
|
+
<element name="UF" type="ans:dm_UF"/>
|
961
|
+
<element name="CBO" type="ans:dm_CBOS"/>
|
962
|
+
</sequence>
|
963
|
+
</complexType>
|
964
|
+
</element>
|
965
|
+
</sequence>
|
966
|
+
</complexType>
|
967
|
+
<complexType name="ct_procedimentoExecutadoSadt">
|
968
|
+
<sequence>
|
969
|
+
<element name="dataExecucao" type="ans:st_data"/>
|
970
|
+
<element name="horaInicial" type="ans:st_hora" minOccurs="0"/>
|
971
|
+
<element name="horaFinal" type="ans:st_hora" minOccurs="0"/>
|
972
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
973
|
+
<element name="quantidadeExecutada" type="ans:st_numerico3"/>
|
974
|
+
<element name="viaAcesso" type="ans:dm_viaDeAcesso" minOccurs="0"/>
|
975
|
+
<element name="tecnicaUtilizada" type="ans:dm_tecnicaUtilizada" minOccurs="0"/>
|
976
|
+
<element name="reducaoAcrescimo" type="ans:st_decimal3-2"/>
|
977
|
+
<element name="valorUnitario" type="ans:st_decimal8-2"/>
|
978
|
+
<element name="valorTotal" type="ans:st_decimal8-2"/>
|
979
|
+
<element name="equipeSadt" type="ans:ct_identEquipeSADT" minOccurs="0" maxOccurs="unbounded"/>
|
980
|
+
</sequence>
|
981
|
+
</complexType>
|
982
|
+
<complexType name="ct_procedimentoSolicitado">
|
983
|
+
<sequence>
|
984
|
+
<element name="procedimento" type="ans:ct_procedimentoDados"/>
|
985
|
+
<element name="unidadeMedida" type="ans:dm_unidadeMedida"/>
|
986
|
+
<element name="quantidadeSolicitada" type="ans:st_numerico3"/>
|
987
|
+
</sequence>
|
988
|
+
</complexType>
|
989
|
+
<complexType name="ct_protocoloDetalhe">
|
990
|
+
<sequence>
|
991
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
992
|
+
<element name="valorTotalProtocolo" type="ans:st_decimal10-2"/>
|
993
|
+
<element name="glosaProtocolo" minOccurs="0">
|
994
|
+
<complexType>
|
995
|
+
<sequence>
|
996
|
+
<element name="motivosGlosa">
|
997
|
+
<complexType>
|
998
|
+
<sequence>
|
999
|
+
<element name="motivoGlosa" type="ans:ct_motivoGlosa" maxOccurs="unbounded"/>
|
1000
|
+
</sequence>
|
1001
|
+
</complexType>
|
1002
|
+
</element>
|
1003
|
+
<element name="vlGlosaProtocolo" type="ans:st_decimal10-2"/>
|
1004
|
+
</sequence>
|
1005
|
+
</complexType>
|
1006
|
+
</element>
|
1007
|
+
<element name="dadosGuiasProtocolo">
|
1008
|
+
<complexType>
|
1009
|
+
<choice>
|
1010
|
+
<element name="dadosGuias" type="ans:ct_guiaDados" maxOccurs="unbounded"/>
|
1011
|
+
<element name="dadosGuiasOdonto" type="ans:ct_guiaDadosOdonto" maxOccurs="unbounded"/>
|
1012
|
+
</choice>
|
1013
|
+
</complexType>
|
1014
|
+
</element>
|
1015
|
+
</sequence>
|
1016
|
+
</complexType>
|
1017
|
+
<complexType name="ct_anexoLote">
|
1018
|
+
<annotation>
|
1019
|
+
<documentation> estrutura da resposta da operadora a um lote de anexos</documentation>
|
1020
|
+
</annotation>
|
1021
|
+
<sequence>
|
1022
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
1023
|
+
<element name="AnexosGuiasTISS">
|
1024
|
+
<complexType>
|
1025
|
+
<choice>
|
1026
|
+
<element name="anexoSituacaoInicial" type="ans:cto_anexoSituacaoInicial" maxOccurs="100"/>
|
1027
|
+
<element name="anexoSolicitacaoRadio" type="ans:ctm_anexoSolicitacaoRadio"/>
|
1028
|
+
<element name="anexoSolicitacaoQuimio" type="ans:ctm_anexoSolicitacaoQuimio"/>
|
1029
|
+
<element name="anexoSolicitacaoOPME" type="ans:ctm_anexoSolicitacaoOPME"/>
|
1030
|
+
</choice>
|
1031
|
+
</complexType>
|
1032
|
+
</element>
|
1033
|
+
</sequence>
|
1034
|
+
</complexType>
|
1035
|
+
<complexType name="ct_protocoloDetalheAnexo">
|
1036
|
+
<sequence>
|
1037
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
1038
|
+
<element name="valorTotalProtocolo" type="ans:st_decimal10-2"/>
|
1039
|
+
<element name="glosasProtocolo" type="ans:ct_motivoGlosa" minOccurs="0" maxOccurs="unbounded"/>
|
1040
|
+
<element name="vlGlosaProtocolo" type="ans:st_decimal10-2" minOccurs="0"/>
|
1041
|
+
<element name="dadosGuias" type="ans:ct_guiaDadosAnexo" maxOccurs="unbounded"/>
|
1042
|
+
</sequence>
|
1043
|
+
</complexType>
|
1044
|
+
<complexType name="ct_protocoloRecurso">
|
1045
|
+
<annotation>
|
1046
|
+
<documentation> estrutura da resposta da operadora a um lote de guias de recurso de glosa de medicina e de odonto</documentation>
|
1047
|
+
</annotation>
|
1048
|
+
<sequence>
|
1049
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
1050
|
+
<element name="glosaProtocolo" type="ans:ct_motivoGlosa" minOccurs="0" maxOccurs="unbounded"/>
|
1051
|
+
<element name="dadosGuias" type="ans:ct_guiaRecurso" minOccurs="0" maxOccurs="unbounded"/>
|
1052
|
+
</sequence>
|
1053
|
+
</complexType>
|
1054
|
+
<complexType name="ct_protocoloRecebimentoAnexo">
|
1055
|
+
<sequence>
|
1056
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
1057
|
+
<element name="identificacaoOperadora" type="ans:ct_fontePagadora"/>
|
1058
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1059
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
1060
|
+
<element name="dataEnvioLote" type="ans:st_texto12"/>
|
1061
|
+
<element name="detalheProtocolo" type="ans:ct_protocoloDetalheAnexo"/>
|
1062
|
+
</sequence>
|
1063
|
+
</complexType>
|
1064
|
+
<complexType name="ct_protocoloRecebimento">
|
1065
|
+
<sequence>
|
1066
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
1067
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1068
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
1069
|
+
<element name="dataEnvioLote" type="ans:st_data"/>
|
1070
|
+
<element name="detalheProtocolo" type="ans:ct_protocoloDetalhe"/>
|
1071
|
+
</sequence>
|
1072
|
+
</complexType>
|
1073
|
+
<complexType name="ct_protocoloRecebimentoRecurso">
|
1074
|
+
<sequence>
|
1075
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
1076
|
+
<element name="identificacaoOperadora" type="ans:ct_fontePagadora"/>
|
1077
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1078
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
1079
|
+
<element name="dataEnvioLote" type="ans:st_data"/>
|
1080
|
+
<element name="detalheProtocolo" type="ans:ct_protocoloRecurso"/>
|
1081
|
+
</sequence>
|
1082
|
+
</complexType>
|
1083
|
+
<complexType name="ct_protocoloSolicitacaoStatus">
|
1084
|
+
<sequence>
|
1085
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1086
|
+
<element name="numeroProtocolo" type="ans:st_texto12"/>
|
1087
|
+
</sequence>
|
1088
|
+
</complexType>
|
1089
|
+
<complexType name="ct_protocoloStatus">
|
1090
|
+
<annotation>
|
1091
|
+
<documentation> estrutura utilizada na resposta da operadora sobre a situa��o do protocolo</documentation>
|
1092
|
+
</annotation>
|
1093
|
+
<sequence>
|
1094
|
+
<element name="identificacaoOperadora" type="ans:st_registroANS"/>
|
1095
|
+
<!--<element name="numeroProtocolo" type="ans:st_texto12"/>
|
1096
|
+
<element name="statusProtocolo" type="ans:dm_statusProtocolo"/>-->
|
1097
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1098
|
+
<element name="lote">
|
1099
|
+
<complexType>
|
1100
|
+
<choice>
|
1101
|
+
<element name="detalheLote" type="ans:ct_loteStatus"/>
|
1102
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1103
|
+
</choice>
|
1104
|
+
</complexType>
|
1105
|
+
</element>
|
1106
|
+
</sequence>
|
1107
|
+
</complexType>
|
1108
|
+
<complexType name="ct_protocoloAnexoStatus">
|
1109
|
+
<annotation>
|
1110
|
+
<documentation> estrutura utilizada na resposta da operadora sobre a situa��o do protocolo</documentation>
|
1111
|
+
</annotation>
|
1112
|
+
<sequence>
|
1113
|
+
<element name="identificacaoOperadora" type="ans:st_registroANS"/>
|
1114
|
+
<!--<element name="numeroProtocolo" type="ans:st_texto12"/>
|
1115
|
+
<element name="statusProtocolo" type="ans:dm_statusProtocolo"/>-->
|
1116
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1117
|
+
<element name="loteAnexo">
|
1118
|
+
<complexType>
|
1119
|
+
<choice>
|
1120
|
+
<element name="detalheLoteAnexo" type="ans:ct_loteAnexoStatus"/>
|
1121
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1122
|
+
</choice>
|
1123
|
+
</complexType>
|
1124
|
+
</element>
|
1125
|
+
</sequence>
|
1126
|
+
</complexType>
|
1127
|
+
<complexType name="ct_recursoGlosaRecebimento">
|
1128
|
+
<sequence>
|
1129
|
+
<element name="nrProtocoloRecursoGlosa" type="ans:st_texto12"/>
|
1130
|
+
<element name="dataEnvioRecurso" type="ans:st_data"/>
|
1131
|
+
<element name="dataRecebimentoRecurso" type="ans:st_data"/>
|
1132
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
1133
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
1134
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1135
|
+
<element name="nrProtocoloRecursado" type="ans:st_texto12"/>
|
1136
|
+
<element name="recursoProtocolo" minOccurs="0">
|
1137
|
+
<complexType>
|
1138
|
+
<sequence>
|
1139
|
+
<element name="codigoGlosaProtocolo" type="ans:dm_tipoGlosa"/>
|
1140
|
+
<element name="justificativaProtocolo" type="ans:st_texto150"/>
|
1141
|
+
</sequence>
|
1142
|
+
</complexType>
|
1143
|
+
</element>
|
1144
|
+
<element name="qtGuiasRecurso" type="ans:st_numerico3" minOccurs="0"/>
|
1145
|
+
<element name="guiasRecurso" minOccurs="0" maxOccurs="100">
|
1146
|
+
<complexType>
|
1147
|
+
<sequence>
|
1148
|
+
<element name="numeroGuiaOrigem" type="ans:st_texto20"/>
|
1149
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
1150
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
1151
|
+
<element name="opcaoRecursoGuia">
|
1152
|
+
<complexType>
|
1153
|
+
<choice>
|
1154
|
+
<element name="recursoGuia" maxOccurs="unbounded">
|
1155
|
+
<complexType>
|
1156
|
+
<sequence>
|
1157
|
+
<element name="codGlosaGuia" type="ans:dm_tipoGlosa"/>
|
1158
|
+
<element name="justificativaGuia" type="ans:st_texto150"/>
|
1159
|
+
</sequence>
|
1160
|
+
</complexType>
|
1161
|
+
</element>
|
1162
|
+
<element name="itensGuia" maxOccurs="unbounded">
|
1163
|
+
<complexType>
|
1164
|
+
<sequence>
|
1165
|
+
<element name="dataInicio" type="ans:st_data"/>
|
1166
|
+
<element name="dataFim" type="ans:st_data" minOccurs="0"/>
|
1167
|
+
<element name="procRecurso" type="ans:ct_procedimentoDados"/>
|
1168
|
+
<element name="denteRegiao" minOccurs="0">
|
1169
|
+
<complexType>
|
1170
|
+
<choice>
|
1171
|
+
<element name="codDente" type="ans:dm_dente"/>
|
1172
|
+
<element name="codRegiao" type="ans:dm_regiao"/>
|
1173
|
+
</choice>
|
1174
|
+
</complexType>
|
1175
|
+
</element>
|
1176
|
+
<element name="denteFace" type="ans:dm_face" minOccurs="0"/>
|
1177
|
+
<element name="codGlosaItem" type="ans:dm_tipoGlosa"/>
|
1178
|
+
<element name="valorRecursado" type="ans:st_decimal8-2"/>
|
1179
|
+
<element name="justificativaItem" type="ans:st_texto150"/>
|
1180
|
+
</sequence>
|
1181
|
+
</complexType>
|
1182
|
+
</element>
|
1183
|
+
</choice>
|
1184
|
+
</complexType>
|
1185
|
+
</element>
|
1186
|
+
</sequence>
|
1187
|
+
</complexType>
|
1188
|
+
</element>
|
1189
|
+
<element name="observacao" type="ans:st_texto500" minOccurs="0"/>
|
1190
|
+
<element name="valorTotalRecursado" type="ans:st_decimal10-2"/>
|
1191
|
+
</sequence>
|
1192
|
+
</complexType>
|
1193
|
+
<complexType name="ct_recebimentoLote">
|
1194
|
+
<choice>
|
1195
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1196
|
+
<element name="protocoloRecebimento" type="ans:ct_protocoloRecebimento"/>
|
1197
|
+
</choice>
|
1198
|
+
</complexType>
|
1199
|
+
<complexType name="ct_recebimentoRecurso">
|
1200
|
+
<choice>
|
1201
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1202
|
+
<element name="protocoloRecebimento" type="ans:ct_recursoGlosaRecebimento"/>
|
1203
|
+
</choice>
|
1204
|
+
</complexType>
|
1205
|
+
<complexType name="ct_reciboCancelaGuia">
|
1206
|
+
<choice>
|
1207
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1208
|
+
<element name="reciboCancelaGuia" type="ans:ct_guiaCancelamentoRecibo"/>
|
1209
|
+
</choice>
|
1210
|
+
</complexType>
|
1211
|
+
<complexType name="ct_reciboComunicacao">
|
1212
|
+
<choice>
|
1213
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1214
|
+
<element name="reciboComunicacao" type="ans:ctm_beneficiarioComunicacaoRecibo"/>
|
1215
|
+
</choice>
|
1216
|
+
</complexType>
|
1217
|
+
<complexType name="ct_respostaElegibilidade">
|
1218
|
+
<choice>
|
1219
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1220
|
+
<element name="reciboElegibilidade" type="ans:ct_elegibilidadeRecibo"/>
|
1221
|
+
</choice>
|
1222
|
+
</complexType>
|
1223
|
+
<complexType name="ct_respostaGlosa">
|
1224
|
+
<choice>
|
1225
|
+
<element name="reciboGlosa" type="ans:ct_glosaRecibo"/>
|
1226
|
+
<element name="reciboGlosaOdonto" type="ans:ct_glosaReciboOdonto"/>
|
1227
|
+
<element name="reciboGlosaStatus">
|
1228
|
+
<complexType>
|
1229
|
+
<sequence>
|
1230
|
+
<element name="nrProtocoloRecursoGlosa" type="ans:st_texto12"/>
|
1231
|
+
<element name="dataEnvioRecurso" type="ans:st_data"/>
|
1232
|
+
<element name="dataRecebimentoRecurso" type="ans:st_data"/>
|
1233
|
+
<element name="numeroLote" type="ans:st_texto12"/>
|
1234
|
+
<element name="registroANS" type="ans:st_registroANS"/>
|
1235
|
+
<element name="dadosPrestador" type="ans:ct_contratadoDados"/>
|
1236
|
+
<element name="nrProtocoloSituacaoRecursoGlosa" type="ans:st_texto12"/>
|
1237
|
+
<element name="dataSituacao" type="ans:st_data"/>
|
1238
|
+
<element name="situacaoProtocolo" type="ans:dm_statusProtocolo"/>
|
1239
|
+
</sequence>
|
1240
|
+
</complexType>
|
1241
|
+
</element>
|
1242
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1243
|
+
</choice>
|
1244
|
+
</complexType>
|
1245
|
+
<complexType name="ct_respostaGlosaGuiaMedica">
|
1246
|
+
<sequence>
|
1247
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
1248
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
1249
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
1250
|
+
<element name="codGlosa" type="ans:dm_tipoGlosa"/>
|
1251
|
+
<element name="justificativaPrestador" type="ans:st_texto150"/>
|
1252
|
+
<element name="recursoGuiaAcatado" type="ans:dm_simNao"/>
|
1253
|
+
<element name="justificativaOPSnaoAcatadoGuia" type="ans:st_texto150" minOccurs="0"/>
|
1254
|
+
</sequence>
|
1255
|
+
</complexType>
|
1256
|
+
<complexType name="ct_respostaGlosaItemMedico">
|
1257
|
+
<sequence>
|
1258
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
1259
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
1260
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
1261
|
+
<element name="dataRealizacao" type="ans:st_data"/>
|
1262
|
+
<element name="dataFim" type="ans:st_data" minOccurs="0"/>
|
1263
|
+
<element name="procRecurso" type="ans:ct_procedimentoDados"/>
|
1264
|
+
<element name="codGlosa" type="ans:dm_tipoGlosa"/>
|
1265
|
+
<element name="valorRecursado" type="ans:st_decimal8-2"/>
|
1266
|
+
<element name="justificativaPrestador" type="ans:st_texto150"/>
|
1267
|
+
<element name="valorAcatadado" type="ans:st_decimal8-2"/>
|
1268
|
+
<element name="justificativaOperadora" type="ans:st_texto150" minOccurs="0"/>
|
1269
|
+
</sequence>
|
1270
|
+
</complexType>
|
1271
|
+
<complexType name="ct_respostaRecursoGuiaOdonto">
|
1272
|
+
<sequence>
|
1273
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
1274
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
1275
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
1276
|
+
<element name="nomeBeneficiario" type="ans:st_texto70"/>
|
1277
|
+
<element name="codGlosaGuia" type="ans:dm_tipoGlosa"/>
|
1278
|
+
<element name="justificativaGuia" type="ans:st_texto150"/>
|
1279
|
+
<element name="recursoAcatadoGuia" type="ans:dm_simNao"/>
|
1280
|
+
</sequence>
|
1281
|
+
</complexType>
|
1282
|
+
<complexType name="ct_respostaRecursoItemOdonto">
|
1283
|
+
<sequence>
|
1284
|
+
<element name="numeroGuiaPrestador" type="ans:st_texto20"/>
|
1285
|
+
<element name="numeroGuiaOperadora" type="ans:st_texto20" minOccurs="0"/>
|
1286
|
+
<element name="senha" type="ans:st_texto20" minOccurs="0"/>
|
1287
|
+
<element name="nomeBeneficiario" type="ans:st_texto70"/>
|
1288
|
+
<element name="recursoProcedimento" maxOccurs="unbounded">
|
1289
|
+
<complexType>
|
1290
|
+
<sequence>
|
1291
|
+
<element name="dataRealizacao" type="ans:st_data"/>
|
1292
|
+
<element name="denteRegiao" minOccurs="0">
|
1293
|
+
<complexType>
|
1294
|
+
<choice>
|
1295
|
+
<element name="codDente" type="ans:dm_dente"/>
|
1296
|
+
<element name="codRegiao" type="ans:dm_regiao"/>
|
1297
|
+
</choice>
|
1298
|
+
</complexType>
|
1299
|
+
</element>
|
1300
|
+
<element name="denteFace" type="ans:dm_face" minOccurs="0"/>
|
1301
|
+
<element name="quantidade" type="ans:st_numerico2"/>
|
1302
|
+
<element name="procRecurso" type="ans:ct_procedimentoDados"/>
|
1303
|
+
<element name="codGlosaProc" type="ans:dm_tipoGlosa"/>
|
1304
|
+
<element name="valorRecursado" type="ans:st_decimal8-2"/>
|
1305
|
+
<element name="justificativaPrestador" type="ans:st_texto150"/>
|
1306
|
+
<element name="valorAcatado" type="ans:st_decimal8-2"/>
|
1307
|
+
<element name="justificativaOperadora" type="ans:st_texto150" minOccurs="0"/>
|
1308
|
+
</sequence>
|
1309
|
+
</complexType>
|
1310
|
+
</element>
|
1311
|
+
</sequence>
|
1312
|
+
</complexType>
|
1313
|
+
<complexType name="ct_situacaoAutorizacao">
|
1314
|
+
<choice>
|
1315
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1316
|
+
<element name="autorizacaoInternacao" type="ans:ctm_autorizacaoInternacao"/>
|
1317
|
+
<element name="autorizacaoServico" type="ans:ctm_autorizacaoServico"/>
|
1318
|
+
<element name="autorizacaoProrrogacao" type="ans:ctm_autorizacaoProrrogacao"/>
|
1319
|
+
<element name="autorizacaoServicoOdonto" type="ans:cto_autorizacaoServico"/>
|
1320
|
+
</choice>
|
1321
|
+
</complexType>
|
1322
|
+
<complexType name="ct_situacaoProtocolo">
|
1323
|
+
<choice>
|
1324
|
+
<element name="mensagemErro" type="ans:ct_motivoGlosa"/>
|
1325
|
+
<element name="situacaoDoProtocolo" type="ans:ct_protocoloStatus"/>
|
1326
|
+
<element name="situacaoProtocoloAnexo" type="ans:ct_protocoloAnexoStatus"/>
|
1327
|
+
</choice>
|
1328
|
+
</complexType>
|
1329
|
+
<!--<complexType name="ct_tempoAproximado">
|
1330
|
+
<sequence>
|
1331
|
+
<element name="tempo" type="ans:st_numerico3"/>
|
1332
|
+
<element name="unidade" type="ans:dm_unidadeTempo"/>
|
1333
|
+
</sequence>
|
1334
|
+
</complexType>-->
|
1335
|
+
<complexType name="ct_situacaoClinica">
|
1336
|
+
<sequence>
|
1337
|
+
<element name="dentes" maxOccurs="unbounded">
|
1338
|
+
<complexType>
|
1339
|
+
<sequence>
|
1340
|
+
<element name="elementoDentario" type="ans:dm_dente"/>
|
1341
|
+
<element name="condicaoClinica" type="ans:dm_condicaoClinica"/>
|
1342
|
+
</sequence>
|
1343
|
+
</complexType>
|
1344
|
+
</element>
|
1345
|
+
</sequence>
|
1346
|
+
</complexType>
|
1347
|
+
<complexType name="ct_solicitacaoProcedimento">
|
1348
|
+
<complexContent>
|
1349
|
+
<extension base="ans:ctm_solicitacaoLote"/>
|
1350
|
+
</complexContent>
|
1351
|
+
</complexType>
|
1352
|
+
<!--<complexType name="ct_tempoDoenca">
|
1353
|
+
<sequence>
|
1354
|
+
<element name="tempo" type="ans:st_numerico2"/>
|
1355
|
+
<element name="unidade" type="ans:dm_unidadeTempoOPME"/>
|
1356
|
+
</sequence>
|
1357
|
+
</complexType>-->
|
1358
|
+
<complexType name="ct_valorCreditoDesconto">
|
1359
|
+
<sequence>
|
1360
|
+
<element name="tipoLancamento" type="ans:dm_tipoLancamento"/>
|
1361
|
+
<element name="descricao" type="ans:st_texto100"/>
|
1362
|
+
<element name="valor" type="ans:st_decimal10-2"/>
|
1363
|
+
</sequence>
|
1364
|
+
</complexType>
|
1365
|
+
<complexType name="ct_valorTotal">
|
1366
|
+
<sequence>
|
1367
|
+
<element name="valorProcessado" type="ans:st_decimal10-2"/>
|
1368
|
+
<element name="valorGlosa" type="ans:st_decimal10-2"/>
|
1369
|
+
<element name="valorLiberado" type="ans:st_decimal10-2"/>
|
1370
|
+
</sequence>
|
1371
|
+
</complexType>
|
1372
|
+
</schema>
|