Document Types
DVS V1 supports 17 Brazilian document types, covering the most common medical-administrative documents exchanged between providers and payers. Each type has its own validation rule set per payer agreement.
V1 catalog (Brazil)
| Slug | Display Name | What it is |
|---|---|---|
SADT | Guia SP/SADT | TISS form for diagnostic and therapeutic services (Holter, ECG, exams) |
PM | Pedido Médico | Free-form medical order/prescription for exams |
EMER | TISS Emergencia / Consulta | TISS SP/SADT used for emergency or outpatient consultations |
INTER | Guia de Internação | TISS hospitalization request guide |
ELGB | Elegibilidade | RDSL — Solicitação de Autorização (eligibility check artifact) |
ANA_PAT | Anatomia Patológica | Pathology biopsy report |
Bloq_Infilt | Bloqueio / Infiltração | Joint infiltration / blockage medical report |
EDA_RELAT_ANES | Justificativa Anestésica (Endoscopia) | Anesthesia justification for endoscopy/colonoscopy |
EXAM_Contras | Exame com Contraste | Imaging report (MRI, CT, angiography) |
OPME | OPME | Materials/Orthotics/Prosthetics request |
QUIMIO_PEDIDO_MEDICO | Pedido Médico de Quimioterapia | Prescription for chemotherapy treatment |
QT_RELAT_MEDICAMENTO | Relatório de Administração de Medicamentos | Medication administration report (oncology) |
QUIMIO_TISS_PRINCIPAL | Guia TISS Principal de QT | TISS SP/SADT for chemotherapy session |
Terapias_Procedimentos_Seriados | Terapias / Procedimentos Seriados | TISS SP/SADT for serial therapy procedures |
Termo | Termo de Prestação | Service provision / financial responsibility terms |
RES_CONT | Conta Paciente | Hospital bill / account summary |
Ficha_AT | Ficha de Atendimento | Patient admission/attendance form |
Plus UNKNOWN returned by the classifier when no match is found.
What GET /v1/document-types returns
The discovery endpoint returns only the document types your tenant is authorized to validate, filtered by access matrix:
{
"items": [
{
"document_type_slug": "PM",
"display_name": "Pedido Médico",
"country_code": "BR",
"agreement_code": "BRADESCO_xxx"
},
{
"document_type_slug": "SADT",
"display_name": "Guia SP/SADT",
"country_code": "BR",
"agreement_code": null
}
],
"total": 2
}
A null agreement_code means wildcard — you can validate that document type for any agreement of that country.
Future countries
Catalogs for Colombia and Mexico are planned but not in V1. Same API; different document type slugs will appear under their respective country codes when available.