# Alíquota Previdenciária | 2026 ~

##### **Tipo Envio: Balancete - Folha**

---

##### **Chave Unicidade**

 \[ Exercício - Código Unidade Gestora - Código Vantagem Desconto - Aliquota Segurado - Aliquota Patronal - Protocolo Leg. Aliquota Segurado - Protocolo Leg. Aliquota Patronal \]

---

##### **Objeto Raiz**

<figure class="wp-block-table is-style-stripes" id="bkmrk-campo-informacoes"><table class="has-fixed-layout" style="width: 100%;"><thead><tr><td style="width: 12.1549%;">**Campo**</td><td style="width: 87.8451%;">**Informações**</td></tr></thead><tbody><tr><td style="width: 12.1549%;">`timestamp`</td><td style="width: 87.8451%;">Campo utilizado para **ordenar** a validação das informações enviadas. Caso sejam enviados **múltiplos payloads** do mesmo tipo, a ordenação ocorrerá da **<span style="color: rgb(186, 55, 42);">data mais antiga para a mais recente</span>**</td></tr><tr><td style="width: 12.1549%;">`elementos`</td><td style="width: 87.8451%;">–</td></tr></tbody></table>

</figure>---

##### **Item**  


<figure class="wp-block-table is-style-stripes" id="bkmrk-campo-chave-informacoes"><table class="has-fixed-layout" style="width: 100%; height: 228.438px;"><thead><tr style="height: 29.7969px;"><td style="width: 35.5185%; height: 29.7969px;">**Campo**</td><td class="has-text-align-left align-center" data-align="left" style="width: 6.79323%; height: 29.7969px;">**Chave**</td><td style="width: 57.6883%; height: 29.7969px;">**Informações**</td></tr></thead><tbody><tr style="height: 30.6094px;"><td style="width: 35.5185%; height: 30.6094px;">`codigoVantagemDesconto`</td><td class="has-text-align-left align-center" data-align="left" style="width: 6.79323%; height: 30.6094px;">✅</td><td style="width: 57.6883%; height: 30.6094px;">–</td></tr><tr style="height: 29.6094px;"><td style="width: 35.5185%; height: 29.6094px;">`aliquotaSegurado`</td><td class="has-text-align-left align-center" data-align="left" style="width: 6.79323%; height: 29.6094px;">–</td><td style="width: 57.6883%; height: 29.6094px;">–</td></tr><tr style="height: 30.6094px;"><td style="width: 35.5185%; height: 30.6094px;">`aliquotaPatronal`</td><td class="has-text-align-left align-center" data-align="left" style="width: 6.79323%; height: 30.6094px;">–</td><td style="width: 57.6883%; height: 30.6094px;">–</td></tr><tr style="height: 30.6094px;"><td style="width: 35.5185%; height: 30.6094px;">`protocoloLegislativoAliquotaSegurado`</td><td class="has-text-align-left align-center" data-align="left" style="width: 6.79323%; height: 30.6094px;">–</td><td style="width: 57.6883%; height: 30.6094px;">–</td></tr><tr style="height: 30.6094px;"><td style="width: 35.5185%; height: 30.6094px;">`protocoloLegislativoAliquotaPatronal`</td><td class="has-text-align-left align-center" data-align="left" style="width: 6.79323%; height: 30.6094px;">–</td><td style="width: 57.6883%; height: 30.6094px;">–</td></tr><tr style="height: 46.5938px;"><td style="width: 35.5185%; height: 46.5938px;">`action`</td><td class="has-text-align-left align-center" data-align="left" style="width: 6.79323%; height: 46.5938px;">–</td><td style="width: 57.6883%; height: 46.5938px;">Define a operação a ser realizada com a informação, seja ela **criação, atualização ou exclusão**</td></tr></tbody></table>

</figure>---

##### **Schema**

```
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Lista de Alíquotas",
  "description": "Lista de objetos representando a entidade Alíquotas",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])T([01]\\d|2[0-3]):([0-5]\\d):([0-5]\\d)\\.\\d{3,6}$",
      "examples": ["2025-09-11T15:30:00.123456"]
    },
    "elementos": {
      "type": "array",
      "uniqueItems": true,
      "items": {
        "title": "Alíquotas",
        "description": "Representação do schema para envio da entidade Alíquotas",
        "type": "object",
        "properties": {
          "codigoVantagemDesconto": {
            "type": "string",
            "minLength": 10,
            "maxLength": 10,
            "pattern": "^[0-9]+$"
          },
          "aliquotaSegurado": {
            "type": "number",
            "exclusiveMinimum": 0
          },
          "aliquotaPatronal": {
            "type": "number",
            "exclusiveMinimum": 0
          },
          "protocoloLegislativoAliquotaSegurado": {
            "type": "string",
            "minLength": 9,
            "maxLength": 9,
            "pattern": "^\\d{6}/\\d{2}$"
          },
          "protocoloLegislativoAliquotaPatronal": {
            "type": "string",
            "minLength": 9,
            "maxLength": 9,
            "pattern": "^\\d{6}/\\d{2}$"
          },
          "action": {
            "type": "string",
            "enum": [
              "CREATE",
              "UPDATE",
              "DELETE"
            ]
          }
        },
        "required": [
          "codigoVantagemDesconto",
          "aliquotaSegurado",
          "aliquotaPatronal",
          "protocoloLegislativoAliquotaSegurado",
          "protocoloLegislativoAliquotaPatronal",
          "action"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "timestamp",
    "elementos"
  ],
  "additionalProperties": false
}

```

---

##### **Exemplo de Payload**

```
{
  "timestamp": "2025-09-11T15:30:00.123456",
  "elementos": [
    {
      "codigoVantagemDesconto": "0000001234",
      "aliquotaSegurado": 8.5,
      "aliquotaPatronal": 12.5,
      "protocoloLegislativoAliquotaSegurado": "000001/25",
      "protocoloLegislativoAliquotaPatronal": "000002/25",
      "action": "CREATE"
    },
    {
      "codigoVantagemDesconto": "0000001234",
      "aliquotaSegurado": 9.0,
      "aliquotaPatronal": 13.0,
      "protocoloLegislativoAliquotaSegurado": "000003/25",
      "protocoloLegislativoAliquotaPatronal": "000004/25",
      "action": "UPDATE"
    }
  ]
}

```

---

### Regras

<table id="bkmrk-id-regra-aliquotas" style="width: 100%; height: 262.766px;"><thead><tr style="height: 29.7969px;"><td style="width: 60.9058%; height: 29.7969px;">ID</td><td style="width: 39.0942%; height: 29.7969px;">Regra</td></tr></thead><tbody><tr style="height: 46.5938px;"><td style="width: 60.9058%; height: 46.5938px;">**ALIQUOTA\_PREVIDENCIARIA\_DUPLICIDADE\_NAO\_PERMITIDA**</td><td style="width: 39.0942%; height: 46.5938px;">Não é permitido cadastrar registros duplicados pela chave de unicidade</td></tr><tr style="height: 29.7969px;"><td style="width: 60.9058%; height: 29.7969px;">**ALIQUOTA\_PREVIDENCIARIA\_UNIDADE\_GESTORA\_RPPS**</td><td style="width: 39.0942%; height: 29.7969px;">Só deve ser cadastrada para unidades gestoras com RPPS</td></tr><tr><td style="width: 60.9058%;">**ALIQUOTA\_PREVIDENCIARIA\_OBRIGATORIO\_RPPS\_JANEIRO**</td><td style="width: 39.0942%;">Para municípios com **RPPS**, é obrigatório que todas as **UGs** realizem envio no mês de **janeiro**.</td></tr></tbody></table>