diff --git a/src/libs/convert/newPnadAdmDependency.js b/src/libs/convert/newPnadAdmDependency.js
new file mode 100644
index 0000000000000000000000000000000000000000..35d652d1d54cd0714201e38082e0dbeb1286674a
--- /dev/null
+++ b/src/libs/convert/newPnadAdmDependency.js
@@ -0,0 +1,30 @@
+/*
+Copyright (C) 2024 Centro de Computacao Cientifica e Software Livre
+Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
+   
+This file is part of simcaq-node.
+
+simcaq-node is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+simcaq-node is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with simcaq-node.  If not, see <https://www.gnu.org/licenses/>.
+*/
+
+module.exports = function newPnadAdmDependency(id) {
+    switch (id) {
+        case 1:
+        return 'Pública';
+        case 2:
+        return 'Privada';
+        case 3:
+        return 'Não frequenta instituição de ensino';
+    }
+};
diff --git a/src/libs/middlewares/id2str.js b/src/libs/middlewares/id2str.js
index cb549d3d57326365f2289d6f7786123941cf2a87..b3e0c62297601c5a4decc2774632d71847490ba1 100644
--- a/src/libs/middlewares/id2str.js
+++ b/src/libs/middlewares/id2str.js
@@ -101,6 +101,7 @@ const supplyDimension = require(`${libs}/convert/supplyDimension`);
 const type = require(`${libs}/convert/type`);
 const level = require(`${libs}/convert/level`);
 const scholarDependency = require(`${libs}/convert/scholarDependency`);
+const newPnadAdmDependency = require(`${libs}/convert/newPnadAdmDependency`);
 
 const ids = {
     gender_id: gender,
@@ -193,7 +194,8 @@ const ids = {
     supply_dimension_id: supplyDimension,
     type_id: type,
     level_id: level,
-    scholar_dependency_id: scholarDependency
+    scholar_dependency_id: scholarDependency,
+    new_pnad_adm_dependency_id: newPnadAdmDependency
 };
 
 function transform(removeId=false) {
@@ -309,5 +311,6 @@ module.exports = {
     peePorCategoria,
     pee,
     shift,
-    admDependencyPub
+    admDependencyPub,
+    newPnadAdmDependency
 };
diff --git a/src/libs/routes_v1/newPnad.js b/src/libs/routes_v1/newPnad.js
index 20c2c33b84aeaa9231f3d7e614fd7f99cb0ed9a6..5cf8d5e8bdd4968d6d9e31233467330763558c40 100644
--- a/src/libs/routes_v1/newPnad.js
+++ b/src/libs/routes_v1/newPnad.js
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2016 Centro de Computacao Cientifica e Software Livre
+Copyright (C) 2024 Centro de Computacao Cientifica e Software Livre
 Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
 
 This file is part of simcaq-node.
@@ -86,13 +86,14 @@ PnadNovoApp.get('/instruction_level', (req, res, next) => {
 }, response('instruction_level'));
 
 PnadNovoApp.get('/adm_dependency', (req, res, next) => {
-    req.result = [
-        {id: 1, name: 'Publica'},
-        {id: 2, name: 'Privada'},
-        {id: 3, name: 'Não frequenta instituição de ensino'},
-    ];
+    req.result = []
+    for (let i = 1; i < 4; i++) {
+        req.result.push({
+            id: i, name: id2str.newPnadAdmDependency(i)
+        });
+    }
     next();
-}, response('years_of_study'));
+}, response('adm_dependency'));
 
 rqf.addField({
     name: 'filter',
@@ -176,7 +177,7 @@ rqf.addField({
     name: 'adm_dependency',
     table: 'pnad_novo',
     tableField: 'dependencia_adm',
-    resultField: 'adm_dependency_id',
+    resultField: 'new_pnad_adm_dependency_id',
     where: {
         relation: '=',
         type: 'integer',