The configuration that is used for the data return will be returned in the configuration object

The allowed attributes and the attributes that will be anonymized will be informed. In case the data are chosen as anonymized, they will follow the following format:

  • Full name (First name and initials) :
    • Joao P. S.
  • Date of birth (range of years):
    • 30 à 40 anos
  • CPF number:
    • ***.456.789-**
  • Phone number:
    • (65) 9994**-****
  • Email address:
    • joao*******@email.com

Example of return of all data and anonymized data

  • Return configuration object
{
  "configuracao": {
    "conjuntoDadosUsuario": {
      "atributosPermitidos": [
        "nome_usuario",
        "idade",
        "cpf",
        "email_usuario",
        "telefone"
      ],
      "atributosAnonimizados": [
        "nome_usuario",
        "idade",
        "cpf",
        "email_usuario",
        "telefone"
      ]
    }
  }
}
  • Return to the above configuration
{
  "usuario": [
    {
      "operacao": "insert",
      "obj": {
        "chave_registro": 1,
        "id": "103c9408f4bd44619730be64848cee15",
        "codigo_usuario": "20170026",
        "nome_usuario": "ALAN A. V. C. B.",
        "idade": "06 à 10 anos",
        "cpf": "***583360**",
        "telefone": "(**) ****-4533",
        "papel": "aluno",
        "email_usuario": "ala***[email protected]"
      }
    }
  ]
}