Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Atualização do Schema da API #1000

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
30 changes: 29 additions & 1 deletion jsonschema/schemas/SalesTaxes_1_000.json
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,20 @@
"minimum": 0,
"maximum": 999999999.99
},
"valor_pis_apur": {
"type": "number",
"description": "Valor do PIS/PASEP via apuração",
"example": 16.50,
"minimum": 0,
"maximum": 999999999.99
},
"valor_pis_st": {
"type": "number",
"description": "Valor do PIS/PASEP Subst. Tributaria",
"example": 16.50,
"minimum": 0,
"maximum": 999999999.99
},
"aliquota_cofins": {
"type": "number",
"description": "Alíquota do COFINS",
Expand All @@ -641,7 +655,21 @@
},
"valor_cofins": {
"type": "number",
"description": "Valor do COFINS",
"description": "Valor da COFINS",
"example": 76,
"minimum": 0,
"maximum": 999999999.99
},
"valor_cofins_apur": {
"type": "number",
"description": "Valor da COFINS via apuração",
"example": 76,
"minimum": 0,
"maximum": 999999999.99
},
"valor_cofins_st": {
"type": "number",
"description": "Valor da COFINS Subst. Tributaria",
"example": 76,
"minimum": 0,
"maximum": 999999999.99
Expand Down