forked from samuelfac/portalunico.siscomex.gov.br
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrigindo schema consultar-documento-transporte
O json.schema provido pela documentação da API do portal único estava incorreto. Foi corrigido o schema para refletir o formato correto do JSON retornado como resultado dos serviços do Portal Único Siscomex, conforme identificado durante o processo de integração.
- Loading branch information
Showing
11 changed files
with
509 additions
and
585 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
270 changes: 140 additions & 130 deletions
270
schemas/cct/consultar-documento-transporte.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,132 +1,142 @@ | ||
{ | ||
"definitions": {}, | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"type": "object", | ||
"$id": "http://www.pucomex.serpro.gov.br/cct/consulta-documento-transporte.schema.json", | ||
"properties": { | ||
"numeroDocumento": { | ||
"type": "string" | ||
}, | ||
"tipoDocumento": { | ||
"type": "string" | ||
}, | ||
"viaTransporte": { | ||
"type": "string" | ||
}, | ||
"situacaoDocumento": { | ||
"type": "string" | ||
}, | ||
"cargas": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"numeroDue": { | ||
"type": "string" | ||
}, | ||
"numeroRuc": { | ||
"type": "string" | ||
}, | ||
"conteiner": { | ||
"type": "object", | ||
"properties": { | ||
"numeroConteiner": { | ||
"type": "string" | ||
}, | ||
"tara": { | ||
"type": "number" | ||
}, | ||
"lacres": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"veiculoRodoviario": { | ||
"type": "object", | ||
"properties": { | ||
"veiculo": { | ||
"type": "object", | ||
"properties": { | ||
"nomeCondutor": { | ||
"type": "string" | ||
}, | ||
"cpfCondutor": { | ||
"type": "string" | ||
}, | ||
"documentoCondutor": { | ||
"type": "string" | ||
}, | ||
"placa": { | ||
"type": "string" | ||
}, | ||
"tara": { | ||
"type": "number" | ||
}, | ||
"lacres": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"reboques": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"placa": { | ||
"type": "string" | ||
}, | ||
"tara": { | ||
"type": "number" | ||
}, | ||
"lacres": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"prefixoTrem": { | ||
"type": "string" | ||
}, | ||
"quantidadeVagoes": { | ||
"type": "integer" | ||
}, | ||
"identificacaoVeiculo": { | ||
"type": "string" | ||
}, | ||
"dataEmissaoDocumentoTransporte": { | ||
"type": "string" | ||
}, | ||
"mensagens": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"codigo": { | ||
"type": "string" | ||
}, | ||
"mensagem": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
"definitions": {}, | ||
"$schema": "http://json-schema.org/draft-06/schema#", | ||
"type": "object", | ||
"$id": "http://www.pucomex.serpro.gov.br/cct/consulta-documento-transporte.schema.json", | ||
"properties": { | ||
"documentosTransporte": { | ||
"$id": "/properties/documentosTransporte", | ||
"type": "array", | ||
"items": { | ||
"$id": "/properties/documentosTransporte/items", | ||
"type": "object", | ||
"properties": { | ||
"numeroDocumento": { | ||
"type": "string" | ||
}, | ||
"tipoDocumento": { | ||
"type": "string" | ||
}, | ||
"viaTransporte": { | ||
"type": "string" | ||
}, | ||
"situacaoDocumento": { | ||
"type": "string" | ||
}, | ||
"cargas": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"numeroDue": { | ||
"type": "string" | ||
}, | ||
"numeroRuc": { | ||
"type": "string" | ||
}, | ||
"conteiner": { | ||
"type": "object", | ||
"properties": { | ||
"numeroConteiner": { | ||
"type": "string" | ||
}, | ||
"tara": { | ||
"type": "number" | ||
}, | ||
"lacres": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"veiculoRodoviario": { | ||
"type": "object", | ||
"properties": { | ||
"veiculo": { | ||
"type": "object", | ||
"properties": { | ||
"nomeCondutor": { | ||
"type": "string" | ||
}, | ||
"cpfCondutor": { | ||
"type": "string" | ||
}, | ||
"documentoCondutor": { | ||
"type": "string" | ||
}, | ||
"placa": { | ||
"type": "string" | ||
}, | ||
"tara": { | ||
"type": "number" | ||
}, | ||
"lacres": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"reboques": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"placa": { | ||
"type": "string" | ||
}, | ||
"tara": { | ||
"type": "number" | ||
}, | ||
"lacres": { | ||
"type": "array", | ||
"uniqueItems": true, | ||
"items": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"prefixoTrem": { | ||
"type": "string" | ||
}, | ||
"quantidadeVagoes": { | ||
"type": "integer" | ||
}, | ||
"identificacaoVeiculo": { | ||
"type": "string" | ||
}, | ||
"dataEmissaoDocumentoTransporte": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
}, | ||
"mensagens": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"codigo": { | ||
"type": "string" | ||
}, | ||
"mensagem": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.