Last active
June 20, 2020 16:01
-
-
Save avdata99/5fd8820d6470b4e2b4bdea4be9d7dac2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "1.0.0", | |
"title": "Sigeva API" | |
}, | |
"basePath": "/v1", | |
"schemes": [ | |
"http", | |
"https" | |
], | |
"consumes": [ | |
"application/json" | |
], | |
"produces": [ | |
"application/json" | |
], | |
"paths": { | |
"/tramites": { | |
"x-swagger-router-controller": "tramites.controller", | |
"get": { | |
"tags": [ | |
"Tramites" | |
], | |
"summary": "Tramites", | |
"description": "", | |
"operationId": "tramitesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "convocatoria", | |
"in": "query", | |
"description": "Convocatoria de la cual quiero los tramites", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Offset inicial", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Tramite" | |
} | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}": { | |
"x-swagger-router-controller": "tramites.controller", | |
"get": { | |
"tags": [ | |
"Tramites" | |
], | |
"summary": "Tramites", | |
"description": "", | |
"operationId": "tramitesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Tramite" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite debe ser enviado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no fue encontrado" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/campos_dinamicos": { | |
"x-swagger-router-controller": "campos_dinamicos.controller", | |
"get": { | |
"tags": [ | |
"Tramites" | |
], | |
"summary": "Tramites", | |
"description": "", | |
"operationId": "tramiteIdcamposdinamicosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Offset inicial", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Dinamico" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite debe ser enviado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no fue encontrado" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/miembros": { | |
"x-swagger-router-controller": "tramites.controller", | |
"get": { | |
"tags": [ | |
"Tramites" | |
], | |
"summary": "Tramites", | |
"description": "", | |
"operationId": "tramitesIdMiembrosTramitesControlerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Offset inicial", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Miembro" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite debe ser enviado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no fue encontrado" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas": { | |
"x-swagger-router-controller": "personas.controller", | |
"get": { | |
"tags": [ | |
"Personas" | |
], | |
"summary": "Personas", | |
"description": "", | |
"operationId": "personasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Persona" | |
} | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}": { | |
"x-swagger-router-controller": "personas.controller", | |
"get": { | |
"tags": [ | |
"Personas" | |
], | |
"summary": "Personas", | |
"description": "", | |
"operationId": "personasIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Persona" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona debe ser enviado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"La persona con ese cuil no fue encontrada" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/personas": { | |
"x-swagger-router-controller": "personas.controller", | |
"get": { | |
"tags": [ | |
"Personas" | |
], | |
"summary": "Personas", | |
"description": "", | |
"operationId": "tramiteIdpersonasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Persona" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite debe ser enviado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no fue encontrado" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/personas/{cuil}": { | |
"x-swagger-router-controller": "personas.controller", | |
"get": { | |
"tags": [ | |
"Personas" | |
], | |
"summary": "Personas", | |
"description": "", | |
"operationId": "tramiteIdpersonasIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Persona" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona debe ser enviado", | |
"El codigo del tramite debe ser enviado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"La persona con ese cuil no fue encontrada", | |
"El codigo del tramite no fue encontrado" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/experticias": { | |
"x-swagger-router-controller": "experticias.controller", | |
"get": { | |
"tags": [ | |
"Personas" | |
], | |
"summary": "Experticias", | |
"description": "", | |
"operationId": "personaIdexperticiasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Experticias", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Experticia" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona debe ser ingresado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Cuil de persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/experticias": { | |
"x-swagger-router-controller": "experticias.controller", | |
"get": { | |
"tags": [ | |
"Personas" | |
], | |
"summary": "Experticias", | |
"description": "", | |
"operationId": "tramiteIdexperticiasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "codigo del tramite contenedor de las Experticias", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Experticia" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite debe ser ingresado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/formaciones": { | |
"x-swagger-router-controller": "formaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones" | |
], | |
"summary": "Formacion Academica -- Formacion Complementaria", | |
"description": "Complementaria Salud, tipo = 1\n Complementaria Posdoctorial, tipo = 2\n Complementaria Cursos, tipo = 3\n Complementaria Idiomas, tipo = 4\n Academica Universitario posgrado/doctorado, tipo = 5\n Academica Universitario posgrado/maestria, tipo = 6\n Academica posgrado/especializacion, tipo = 7\n Academica Universitario de grado, tipo = 8\n Academica Terciario no universitario, tipo = 9\n Academica Medio, tipo = 10\n Academica Basico, tipo = 11\n", | |
"operationId": "personaIdformacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Formaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Formaciones", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6, | |
7, | |
8, | |
9, | |
10, | |
11 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Formacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/formaciones/{id}": { | |
"x-swagger-router-controller": "formaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones" | |
], | |
"summary": "Actividades de Formacion", | |
"description": "Evaluación de personal científico-teconológico y jurado de tesis y/o premios, tipo = 1 \nEvaluación de proyectos de I+D y/o extensión, tipo = 2 \nEvaluación de trabajos en revistas CyT, tipo = 3 \nEvaluación institucional, tipo = 4 \nOtro tipo de evaluación, tipo = 5 \nGestión editorial, tipo = 6 (va en XX)", | |
"operationId": "personaIdformacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Formaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la formacion", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Formacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la formacion debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de formacion inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/formaciones": { | |
"x-swagger-router-controller": "formaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones" | |
], | |
"summary": "Formacion Academica -- Formacion Complementaria", | |
"description": "Complementaria Salud, tipo = 1\n Complementaria Posdoctorial, tipo = 2\n Complementaria Cursos, tipo = 3\n Complementaria Idiomas, tipo = 4\n Academica Universitario posgrado/doctorado, tipo = 5\n Academica Universitario posgrado/maestria, tipo = 6\n Academica posgrado/especializacion, tipo = 7\n Academica Universitario de grado, tipo = 8\n Academica Terciario no universitario, tipo = 9\n Academica Medio, tipo = 10\n Academica Basico, tipo = 11\n", | |
"operationId": "tramiteIdformacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las formaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Formaciones", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6, | |
7, | |
8, | |
9, | |
10, | |
11 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Formacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/formaciones/{id}": { | |
"x-swagger-router-controller": "formaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones" | |
], | |
"summary": "Formacion Academica -- Formacion Complementaria", | |
"description": "Complementaria Salud, tipo = 1\n Complementaria Posdoctorial, tipo = 2\n Complementaria Cursos, tipo = 3\n Complementaria Idiomas, tipo = 4\n Academica Universitario posgrado/doctorado, tipo = 5\n Academica Universitario posgrado/maestria, tipo = 6\n Academica posgrado/especializacion, tipo = 7\n Academica Universitario de grado, tipo = 8\n Academica Terciario no universitario, tipo = 9\n Academica Medio, tipo = 10\n Academica Basico, tipo = 11\n", | |
"operationId": "tramiteIdformacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las formaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la formacion", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Formacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la formacion debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la formacion inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/cargos": { | |
"x-swagger-router-controller": "cargos.controller", | |
"get": { | |
"tags": [ | |
"Cargos" | |
], | |
"summary": "Docencia, Cargos I+D, Cargos en gestion institucional, Otros Cargos", | |
"description": "Docente nivel superior universitario y/o posgrado, tipo = 3\n Docente nivel terciario no universitario, tipo = 4\n Docente nivel básico y/o medio, tipo = 5\n Docente cursos de posgrado y capacitaciones extracurriculares, tipo = 6\n Cargos en gestión institucional, tipo = 7\n Otros cargos, tipo = 8\n Cargos de I+D - En organismos científico-tecnológicos, tipo = 9\n Cargos de I+D - Categorización del programa de incentivos, tipo = 10\n Cargos de I+D - En otro tipo de institucione, tipo = 11\n", | |
"operationId": "personaIdcargosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los Cargos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Cargos", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
3, | |
4, | |
5, | |
6, | |
7, | |
8, | |
9, | |
10, | |
11 | |
], | |
"default": 3 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Cargo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/cargos/{id}": { | |
"x-swagger-router-controller": "cargos.controller", | |
"get": { | |
"tags": [ | |
"Cargos" | |
], | |
"summary": "Docencia, Cargos I+D, Cargos en gestion institucional, Otros Cargos", | |
"description": "Docente nivel superior universitario y/o posgrado, tipo = 3\n Docente nivel terciario no universitario, tipo = 4\n Docente nivel básico y/o medio, tipo = 5\n Docente cursos de posgrado y capacitaciones extracurriculares, tipo = 6\n Cargos en gestión institucional, tipo = 7\n Otros cargos, tipo = 8\n Cargos de I+D - En organismos científico-tecnológicos, tipo = 9\n Cargos de I+D - Categorización del programa de incentivos, tipo = 10\n Cargos de I+D - En otro tipo de institucione, tipo = 11\n", | |
"operationId": "personaIdcargosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los Cargos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del Cargo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Cargo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id del cargo debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de cargo inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/cargos": { | |
"x-swagger-router-controller": "cargos.controller", | |
"get": { | |
"tags": [ | |
"Cargos" | |
], | |
"summary": "Docencia, Cargos I+D, Cargos en gestion institucional, Otros Cargos", | |
"description": "Docente nivel superior universitario y/o posgrado, tipo = 3\n Docente nivel terciario no universitario, tipo = 4\n Docente nivel básico y/o medio, tipo = 5\n Docente cursos de posgrado y capacitaciones extracurriculares, tipo = 6\n Cargos en gestión institucional, tipo = 7\n Otros cargos, tipo = 8\n Cargos de I+D - En organismos científico-tecnológicos, tipo = 9\n Cargos de I+D - Categorización del programa de incentivos, tipo = 10\n Cargos de I+D - En otro tipo de institucione, tipo = 11\n", | |
"operationId": "tramiteIdcargosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los cargos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Cargos", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
3, | |
4, | |
5, | |
6, | |
7, | |
8, | |
9, | |
10, | |
11 | |
], | |
"default": 3 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Cargo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/cargos/{id}": { | |
"x-swagger-router-controller": "cargos.controller", | |
"get": { | |
"tags": [ | |
"Cargos" | |
], | |
"summary": "Docencia, Cargos I+D, Cargos en gestion institucional, Otros Cargos", | |
"description": "Docente nivel superior universitario y/o posgrado, tipo = 3\n Docente nivel terciario no universitario, tipo = 4\n Docente nivel básico y/o medio, tipo = 5\n Docente cursos de posgrado y capacitaciones extracurriculares, tipo = 6\n Cargos en gestión institucional, tipo = 7\n Otros cargos, tipo = 8\n Cargos de I+D - En organismos científico-tecnológicos, tipo = 9\n Cargos de I+D - Categorización del programa de incentivos, tipo = 10\n Cargos de I+D - En otro tipo de institucione, tipo = 11\n", | |
"operationId": "tramiteIdcargosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los cargos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del cargo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Cargo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id del cargo debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id del cargo inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/rrhhformaciones": { | |
"x-swagger-router-controller": "rrhhformaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones de Recursos Humanos" | |
], | |
"summary": "Formaciones de Recursos Humanos", | |
"description": "Tesistas, tipo = 1 \nBecarios, tipo = 2 \nInvestigadores, tipo = 3 \nPasantes, tipo = 4 \nPersonal de apoyo, tipo = 5", | |
"operationId": "personaIdrrhhformacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Formaciones de recursos humanos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Formaciones de recursos humanos", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Rrhhformacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/rrhhformaciones/{id}": { | |
"x-swagger-router-controller": "rrhhformaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones de Recursos Humanos" | |
], | |
"summary": "Formaciones de Recursos Humanos", | |
"description": "Tesistas, tipo = 1 \nBecarios, tipo = 2 \nInvestigadores, tipo = 3 \nPasantes, tipo = 4 \nPersonal de apoyo, tipo = 5", | |
"operationId": "personaIdrrhhformacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Formaciones de recursos humanos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la formacion de recursos humanos", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Rrhhformacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la formacion de recursos humanos debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de formacion de recursos humanos inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/rrhhformaciones": { | |
"x-swagger-router-controller": "rrhhformaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones de Recursos Humanos" | |
], | |
"summary": "Formaciones de Recursos Humanos", | |
"description": "Tesistas, tipo = 1 \nBecarios, tipo = 2 \nInvestigadores, tipo = 3 \nPasantes, tipo = 4 \nPersonal de apoyo, tipo = 5", | |
"operationId": "tramiteIdrrhhformacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las formaciones de recursos humanos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Formaciones de recursos humanos", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Rrhhformacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/rrhhformaciones/{id}": { | |
"x-swagger-router-controller": "rrhhformaciones.controller", | |
"get": { | |
"tags": [ | |
"Formaciones de Recursos Humanos" | |
], | |
"summary": "Formaciones de Recursos Humanos", | |
"description": "Tesistas, tipo = 1 \nBecarios, tipo = 2 \nInvestigadores, tipo = 3 \nPasantes, tipo = 4 \nPersonal de apoyo, tipo = 5", | |
"operationId": "tramiteIdformacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las formaciones de recursos humanos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la formacion de recursos humanos", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Rrhhformacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la formacion de recursos humanos debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la formacion de recursos humanos inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/financiamientos": { | |
"x-swagger-router-controller": "financiamientos.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Financiamientos", | |
"description": "Proyectos de I+D, tipo = 5\nProyectos de extensión vinculación y/o transferencia, tipo = 11 \nProyectos de comunicación pública de la ciencia y la tecnología , tipo = 12\nSubsidios para organizacion de eventos CyT , tipo = 7\nSubsidios para asistencia a eventos CyT , tipo = 8\nSubsidios para infraestructura y equipamiento CyT, tipo = 9", | |
"operationId": "personaIdfinanciamientosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los financiamientos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de financiamiento", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
5, | |
7, | |
8, | |
9, | |
11, | |
12 | |
] | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Financiamiento" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/financiamientos/{id}": { | |
"x-swagger-router-controller": "financiamientos.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Financiamientos", | |
"description": "Proyectos de I+D, tipo = 5\nProyectos de extensión vinculación y/o transferencia, tipo = 11 \nProyectos de comunicación pública de la ciencia y la tecnología , tipo = 12\nSubsidios para organizacion de eventos CyT , tipo = 7\nSubsidios para asistencia a eventos CyT , tipo = 8\nSubsidios para infraestructura y equipamiento CyT, tipo = 9", | |
"operationId": "personaIdfinanciamientosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los financiamientos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de el financiamiento", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Financiamiento" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de el financiamiento debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de el financiamiento inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/financiamientos": { | |
"x-swagger-router-controller": "financiamientos.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Financiamientos", | |
"description": "Proyectos de I+D, tipo = 5\nProyectos de extensión vinculación y/o transferencia, tipo = 11 \nProyectos de comunicación pública de la ciencia y la tecnología , tipo = 12\nSubsidios para organizacion de eventos CyT , tipo = 7\nSubsidios para asistencia a eventos CyT , tipo = 8\nSubsidios para infraestructura y equipamiento CyT, tipo = 9", | |
"operationId": "tramiteIdfinanciamientosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los financiamientos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de financiamiento", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
5, | |
7, | |
8, | |
9, | |
11, | |
12 | |
] | |
}, | |
{ | |
"name": "financiamiento_proyecto", | |
"in": "query", | |
"description": "solo marcar como true si la convocatoria es de proyectos", | |
"required": true, | |
"type": "boolean", | |
"default": false | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Financiamiento" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/financiamientos/{id}": { | |
"x-swagger-router-controller": "financiamientos.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Financiamientos", | |
"description": "Proyectos de I+D, tipo = 5\nProyectos de extensión vinculación y/o transferencia, tipo = 11 \nProyectos de comunicación pública de la ciencia y la tecnología , tipo = 12\nSubsidios para organizacion de eventos CyT , tipo = 7\nSubsidios para asistencia a eventos CyT , tipo = 8\nSubsidios para infraestructura y equipamiento CyT, tipo = 9", | |
"operationId": "tramiteIdfinanciamientosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los financiamientos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de el financiamiento", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "financiamiento_proyecto", | |
"in": "query", | |
"description": "solo marcar como true si la convocatoria es de proyectos", | |
"required": true, | |
"type": "boolean", | |
"default": false | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Financiamiento" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de el financiamiento debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de el financiamiento inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/becas": { | |
"x-swagger-router-controller": "becas.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Becas", | |
"description": "Becas", | |
"operationId": "personaIdbecasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las becas", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Beca" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/becas/{id}": { | |
"x-swagger-router-controller": "becas.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Becas", | |
"description": "Becas", | |
"operationId": "personaIdbecasIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las becas", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la beca", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Beca" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la beca debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la beca inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/becas": { | |
"x-swagger-router-controller": "becas.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Becas", | |
"description": "Becas", | |
"operationId": "tramiteIdbecasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las becas", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Beca" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/becas/{id}": { | |
"x-swagger-router-controller": "becas.controller", | |
"get": { | |
"tags": [ | |
"Financiamientos" | |
], | |
"summary": "Becas", | |
"description": "Becas", | |
"operationId": "tramiteIdbecasIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las becas", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la beca", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Beca" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la beca debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la beca inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/extensiones": { | |
"x-swagger-router-controller": "extensiones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de Extension" | |
], | |
"summary": "Actividades de Extension", | |
"description": "Divulgación de información científico-tecnológica, tipo = 1\nExtensionismo rural o industrial, tipo = 2\nPrestación de servicios sociales y/o comunitarios, tipo = 3\nProducción y/o divulgación artística o cultural, tipo = 4 \nOtro, tipo = 5", | |
"operationId": "personaIdextensionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las actividades de extension", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de actividades de extension", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Extension" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/extensiones/{id}": { | |
"x-swagger-router-controller": "extensiones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de Extension" | |
], | |
"summary": "Actividades de Extension", | |
"description": "Divulgación de información científico-tecnológica, tipo = 1\nExtensionismo rural o industrial, tipo = 2\nPrestación de servicios sociales y/o comunitarios, tipo = 3\nProducción y/o divulgación artística o cultural, tipo = 4 \nOtro, tipo = 5", | |
"operationId": "personaIdextensionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las actividades de extension", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la actividad de extension", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Extension" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la actividad de extension debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la actividad de extension inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/extensiones": { | |
"x-swagger-router-controller": "extensiones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de Extension" | |
], | |
"summary": "Actividades de Extension", | |
"description": "Divulgación de información científico-tecnológica, tipo = 1\nExtensionismo rural o industrial, tipo = 2\nPrestación de servicios sociales y/o comunitarios, tipo = 3\nProducción y/o divulgación artística o cultural, tipo = 4 \nOtro, tipo = 5", | |
"operationId": "tramiteIdextensionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las actividades de extension", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de actividades de extension", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Extension" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/extensiones/{id}": { | |
"x-swagger-router-controller": "extensiones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de Extension" | |
], | |
"summary": "Actividades de Extension", | |
"description": "Divulgación de información científico-tecnológica, tipo = 1\nExtensionismo rural o industrial, tipo = 2\nPrestación de servicios sociales y/o comunitarios, tipo = 3\nProducción y/o divulgación artística o cultural, tipo = 4 \nOtro, tipo = 5", | |
"operationId": "tramiteIdextensionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las actividades de extension", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la actividad de extension", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Extension" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la actividad de extension debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la actividad de extension inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/evaluaciones": { | |
"x-swagger-router-controller": "evaluaciones.controller", | |
"get": { | |
"tags": [ | |
"Evaluaciones" | |
], | |
"summary": "Actividades de Evaluacion", | |
"description": "Evaluación de personal científico-teconológico y jurado de tesis y/o premios, tipo = 1 \nEvaluación de proyectos de I+D y/o extensión, tipo = 2 \nEvaluación de trabajos en revistas CyT, tipo = 3 \nEvaluación institucional, tipo = 4 \nOtro tipo de evaluación, tipo = 5 \nGestión editorial, tipo = 6 (va en XX)", | |
"operationId": "personaIdevaluacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Evaluaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Evaluaciones", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Evaluacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/evaluaciones/{id}": { | |
"x-swagger-router-controller": "evaluaciones.controller", | |
"get": { | |
"tags": [ | |
"Evaluaciones" | |
], | |
"summary": "Actividades de Evaluacion", | |
"description": "Evaluación de personal científico-teconológico y jurado de tesis y/o premios, tipo = 1 \nEvaluación de proyectos de I+D y/o extensión, tipo = 2 \nEvaluación de trabajos en revistas CyT, tipo = 3 \nEvaluación institucional, tipo = 4 \nOtro tipo de evaluación, tipo = 5 \nGestión editorial, tipo = 6 (va en XX)", | |
"operationId": "personaIdevaluacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Evaluaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la evaluacion", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Evaluacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la evaluacion debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de evaluacion inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/evaluaciones": { | |
"x-swagger-router-controller": "evaluaciones.controller", | |
"get": { | |
"tags": [ | |
"Evaluaciones" | |
], | |
"summary": "Actividades de Evaluacion", | |
"description": "Evaluación de personal científico-teconológico y jurado de tesis y/o premios, tipo = 1 \nEvaluación de proyectos de I+D y/o extensión, tipo = 2 \nEvaluación de trabajos en revistas CyT, tipo = 3 \nEvaluación institucional, tipo = 4 \nOtro tipo de evaluación, tipo = 5 \nGestión editorial, tipo = 6 (va en XX)", | |
"operationId": "tramiteIdevaluacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las evaluaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Evaluaciones", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Evaluacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/evaluaciones/{id}": { | |
"x-swagger-router-controller": "evaluaciones.controller", | |
"get": { | |
"tags": [ | |
"Evaluaciones" | |
], | |
"summary": "Actividades de Evaluacion", | |
"description": "Evaluación de personal científico-teconológico y jurado de tesis y/o premios, tipo = 1 \nEvaluación de proyectos de I+D y/o extensión, tipo = 2 \nEvaluación de trabajos en revistas CyT, tipo = 3 \nEvaluación institucional, tipo = 4 \nOtro tipo de evaluación, tipo = 5 \nGestión editorial, tipo = 6 (va en XX)", | |
"operationId": "tramiteIdevaluacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las evaluaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la evaluacion", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Evaluacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la evaluacion debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la evaluacion inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/actividades": { | |
"x-swagger-router-controller": "actividades.controller", | |
"get": { | |
"tags": [ | |
"Otras Actividades" | |
], | |
"summary": "Estancias y Pasantias, Otras Actividades", | |
"description": "Estancias y pasantías, tipo = 1 \nOperación y mantenimiento de sistemas de alta complejidad, tipo = 2 \n Produccion de Bienes Intensivos en Conocimiento, tipo = 3 \nNormalización, tipo = 4 \nEjercicio de la profesión en el ámbito no académico, tipo = 5 \nOtra actividad CyT, tipo = 6", | |
"operationId": "personaIdactividadesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las actividades", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de actividad", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6 | |
] | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Actividad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/actividades/{id}": { | |
"x-swagger-router-controller": "actividades.controller", | |
"get": { | |
"tags": [ | |
"Otras Actividades" | |
], | |
"summary": "Estancias y Pasantias, Otras Actividades", | |
"description": "Estancias y pasantías, tipo = 1 \nOperación y mantenimiento de sistemas de alta complejidad, tipo = 2 \n Produccion de Bienes Intensivos en Conocimiento, tipo = 3 \nNormalización, tipo = 4 \nEjercicio de la profesión en el ámbito no académico, tipo = 5 \nOtra actividad CyT, tipo = 6", | |
"operationId": "personaIdactividadesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las actividades", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la actividad", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Actividad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la actividad debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la actividad inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/actividades": { | |
"x-swagger-router-controller": "actividades.controller", | |
"get": { | |
"tags": [ | |
"Otras Actividades" | |
], | |
"summary": "Estancias y Pasantias, Otras Actividades", | |
"description": "Estancias y pasantías, tipo = 1 \nOperación y mantenimiento de sistemas de alta complejidad, tipo = 2 \n Produccion de Bienes Intensivos en Conocimiento, tipo = 3 \nNormalización, tipo = 4 \nEjercicio de la profesión en el ámbito no académico, tipo = 5 \nOtra actividad CyT, tipo = 6", | |
"operationId": "tramiteIdactividadesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las actividades", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Aatividad", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6 | |
] | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Actividad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/actividades/{id}": { | |
"x-swagger-router-controller": "actividades.controller", | |
"get": { | |
"tags": [ | |
"Otras Actividades" | |
], | |
"summary": "Estancias y Pasantias, Otras Actividades", | |
"description": "Estancias y pasantías, tipo = 1 \nOperación y mantenimiento de sistemas de alta complejidad, tipo = 2 \n Produccion de Bienes Intensivos en Conocimiento, tipo = 3 \nNormalización, tipo = 4 \nEjercicio de la profesión en el ámbito no académico, tipo = 5 \nOtra actividad CyT, tipo = 6", | |
"operationId": "tramiteIdactividadesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las actividades", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la actividad", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Actividad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la actividad debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la actividad inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/publicaciones": { | |
"x-swagger-router-controller": "publicaciones.controller", | |
"get": { | |
"tags": [ | |
"Publicaciones" | |
], | |
"summary": "Publicaciones", | |
"description": "Articulos, tipo = 1\nPartes de libro, tipo = 2\nLibros, tipo = 3\nTrabajos en eventos CT publicados y no publicados, tipo = 4, publicado [aplica aca]\nTesis de posgrado doctorado/posgrado, tipo = 7\nOtras producciones CT, tipo = 8\nInformes Tecnicos, tipo = 9", | |
"operationId": "personaIdpublicacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Publicaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "Tipo de publicaciones", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
7, | |
8, | |
9 | |
], | |
"default": 1 | |
}, | |
{ | |
"name": "publicado", | |
"in": "query", | |
"description": "Para filtrar trabajos en eventos cientificos publicados o no publicados", | |
"required": false, | |
"type": "boolean" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Publicacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/publicaciones/{id}": { | |
"x-swagger-router-controller": "publicaciones.controller", | |
"get": { | |
"tags": [ | |
"Publicaciones" | |
], | |
"summary": "Publicaciones", | |
"description": "", | |
"operationId": "personaIdpublicacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las Publicaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Código de la publicaciones", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Publicacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la publicacion debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/publicaciones": { | |
"x-swagger-router-controller": "publicaciones.controller", | |
"get": { | |
"tags": [ | |
"Publicaciones" | |
], | |
"summary": "Publicaciones", | |
"description": "", | |
"operationId": "tramiteIdpublicacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de publicaciones", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
7, | |
8, | |
9 | |
], | |
"default": 1 | |
}, | |
{ | |
"name": "publicado", | |
"in": "query", | |
"description": "Para filtrar trabajos en eventos cientificos publicados o no publicados", | |
"required": false, | |
"type": "boolean" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Publicacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/publicaciones/{id}": { | |
"x-swagger-router-controller": "publicaciones.controller", | |
"get": { | |
"tags": [ | |
"Publicaciones" | |
], | |
"summary": "Publicaciones", | |
"description": "", | |
"operationId": "tramiteIdpublicacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Código de la publicacion", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Publicacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la publicacion inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/desarrollos": { | |
"x-swagger-router-controller": "desarrollos.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Desarrollos", | |
"description": "Desarrollo de productos procesos productivos y sistemas tecnológicos, tipo = 12\nDesarrollo de procesos socio-comunitarios, tipo = 13\nDesarrollo de procesos de gestión empresarial, tipo = 14\nDesarrollo de procesos de gestión pública, tipo = 15", | |
"operationId": "personaIddesarrollosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona de la que quiero sus Desarrollos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de Desarrolos", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
12, | |
13, | |
14, | |
15 | |
], | |
"default": 12 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Desarrollo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/desarrollos/{id}": { | |
"x-swagger-router-controller": "desarrollos.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Desarrollos", | |
"description": "", | |
"operationId": "personaIddesarrollosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona de la que quiero sus Desarrollos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del desarrollo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Desarrollo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la publicacion debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/desarrollos": { | |
"x-swagger-router-controller": "desarrollos.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Desarrollos", | |
"description": "Desarrollo de productos procesos productivos y sistemas tecnológicos, tipo = 12\nDesarrollo de procesos socio-comunitarios, tipo = 13\nDesarrollo de procesos de gestión empresarial, tipo = 14\nDesarrollo de procesos de gestión pública, tipo = 15", | |
"operationId": "tramiteIddesarrollosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "Tipo de desarrollos", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
12, | |
13, | |
14, | |
15 | |
], | |
"default": 12 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Desarrollo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/desarrollos/{id}": { | |
"x-swagger-router-controller": "desarrollos.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Desarrollos", | |
"description": "", | |
"operationId": "tramiteIddesarrollosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del desarrollo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Desarrollo" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id del desarrollo debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id del desarrollo inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/desarrollos/{id}/propiedades": { | |
"x-swagger-router-controller": "propiedades.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Propiedad Intelectual", | |
"description": "", | |
"operationId": "personaIdpropiedadesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona de las propiedades intelectuales de sus desarrollos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del desarrollo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Propiedad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la publicacion debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente", | |
"Id de la publicacion inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/desarrollos/{id}/propiedades/{propiedadid}": { | |
"x-swagger-router-controller": "propiedades.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Propiedad Intelectual", | |
"description": "", | |
"operationId": "personaIdpropiedadesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona de las propiedades intelectuales de sus desarrollos", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del desarrollo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "propiedadid", | |
"in": "path", | |
"description": "Id de la propiedad intelectual", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Propiedad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la publicacion debe ser un entero", | |
"El id de la propiedad intelectual debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente", | |
"Id de la publicacion inexistente", | |
"Id de la propiedad intelectual inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/desarrollos/{id}/propiedades": { | |
"x-swagger-router-controller": "propiedades.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Propiedad Intelectual", | |
"description": "", | |
"operationId": "tramiteIdpropiedadesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del desarrollo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Propiedad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la publicacion debe ser un entero", | |
"El codigo del tramite no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Tramite inexistente", | |
"Id de la publicacion inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramite/{codigo}/desarrollos/{id}/propiedades/{propiedadid}": { | |
"x-swagger-router-controller": "propiedades.controller", | |
"get": { | |
"tags": [ | |
"Desarrollos" | |
], | |
"summary": "Propiedad Intelectual", | |
"description": "", | |
"operationId": "tramiteIdpropiedadesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del desarrollo", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "propiedadid", | |
"in": "path", | |
"description": "Id de la propiedad intelectual", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Propiedad" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la publicacion debe ser un entero", | |
"El id de la propiedad intelectual debe ser un entero", | |
"El codigo del tramite no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Tramite inexistente", | |
"Id de la publicacion inexistente", | |
"Id de la propiedad intelectual inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/artisticas": { | |
"x-swagger-router-controller": "artisticas.controller", | |
"get": { | |
"tags": [ | |
"Producciones Artisticas" | |
], | |
"summary": "Producciones Artisticas", | |
"description": "musical-sonora, tipo = 1\n visual, tipo = 2\n audiovisual, tipo = 3\n corporal, tipo = 4\n literario narrativo, tipo = 5\n literario dramatico, tipo = 5\n literario guion, tipo = 5\n otro genero literario, tipo = 5\n otra produccion artistica, tipo = 6\n", | |
"operationId": "personaIdartisticasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las producciones artisticas", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de producciones artisticas", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Artistica" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/artisticas/{id}": { | |
"x-swagger-router-controller": "artisticas.controller", | |
"get": { | |
"tags": [ | |
"Producciones Artisticas" | |
], | |
"summary": "Producciones Artisticas", | |
"description": "musical-sonora, tipo = 1\n visual, tipo = 2\n audiovisual, tipo = 3\n corporal, tipo = 4\n literario narrativo, tipo = 5\n literario dramatico, tipo = 5\n literario guion, tipo = 5\n otro genero literario, tipo = 5\n otra produccion artistica, tipo = 6\n", | |
"operationId": "personaIdartisticasIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona ingreso las producciones artisticas", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la produccion artistica", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Artistica" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la publicacion debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/artisticas": { | |
"x-swagger-router-controller": "artisticas.controller", | |
"get": { | |
"tags": [ | |
"Producciones Artisticas" | |
], | |
"summary": "Producciones Artisticas", | |
"description": "musical-sonora, tipo = 1\n visual, tipo = 2\n audiovisual, tipo = 3\n corporal, tipo = 4\n literario narrativo, tipo = 5\n literario dramatico, tipo = 5\n literario guion, tipo = 5\n otro genero literario, tipo = 5\n otra produccion artistica, tipo = 6\n", | |
"operationId": "tramiteIdartisticasControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "Tipo de producciones artisticas", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
1, | |
2, | |
3, | |
4, | |
5, | |
6 | |
], | |
"default": 1 | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Artistica" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/artisticas/{id}": { | |
"x-swagger-router-controller": "artisticas.controller", | |
"get": { | |
"tags": [ | |
"Producciones Artisticas" | |
], | |
"summary": "Producciones Artisticas", | |
"description": "musical-sonora, tipo = 1\n visual, tipo = 2\n audiovisual, tipo = 3\n corporal, tipo = 4\n literario narrativo, tipo = 5\n literario dramatico, tipo = 5\n literario guion, tipo = 5\n otro genero literario, tipo = 5\n otra produccion artistica, tipo = 6\n", | |
"operationId": "tramiteIdartisticasIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la produccion artistica", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Artistica" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la produccion artistica debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la produccion artistica inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/servicios": { | |
"x-swagger-router-controller": "servicios.controller", | |
"get": { | |
"tags": [ | |
"Servicios" | |
], | |
"summary": "Servicios", | |
"description": "Servicios, tipo = 5", | |
"operationId": "personaIdserviciosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los servicios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Servicio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/servicios/{id}": { | |
"x-swagger-router-controller": "servicios.controller", | |
"get": { | |
"tags": [ | |
"Servicios" | |
], | |
"summary": "Servicios", | |
"description": "Servicios, tipo = 5", | |
"operationId": "personaIdserviciosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los servicios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de el servicio", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Servicio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de el servicio debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de el servicio inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/servicios": { | |
"x-swagger-router-controller": "servicios.controller", | |
"get": { | |
"tags": [ | |
"Servicios" | |
], | |
"summary": "Servicios", | |
"description": "Servicios, tipo = 5", | |
"operationId": "tramiteIdserviciosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los servicios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Servicio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/servicios/{id}": { | |
"x-swagger-router-controller": "servicios.controller", | |
"get": { | |
"tags": [ | |
"Servicios" | |
], | |
"summary": "Servicios", | |
"description": "Servicios, tipo = 5", | |
"operationId": "tramiteIdserviciosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los servicios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de el servicio", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Servicio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de el servicio debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de el servicio inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/antecedentes": { | |
"x-swagger-router-controller": "antecedentes.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "personaIdantecedentesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los antecedentes", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de antecedente", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
7, | |
8, | |
9 | |
] | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Antecedente" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/antecedentes/{id}": { | |
"x-swagger-router-controller": "antecedentes.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "personaIdantecedentesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los antecedentes", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de el antecedente", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Antecedente" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de el antecedente debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de el antecedente inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/antecedentes": { | |
"x-swagger-router-controller": "antecedentes.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "tramiteIdantecedentesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los antecedentes", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "tipo", | |
"in": "query", | |
"description": "tipo de antecedente", | |
"required": true, | |
"type": "integer", | |
"enum": [ | |
7, | |
8, | |
9 | |
] | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Antecedente" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/antecedentes/{id}": { | |
"x-swagger-router-controller": "antecedentes.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "tramiteIdantecedentesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los antecedentes", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de el antecedente", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Antecedente" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de el antecedente debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de el antecedente inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/participaciones": { | |
"x-swagger-router-controller": "participaciones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "personaIdparticipacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las participaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Participacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/participaciones/{id}": { | |
"x-swagger-router-controller": "participaciones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "personaIdparticipacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso las participaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la participacion", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Participacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la participacion debe ser un entero", | |
"El cuil de la persona no puede ser vacio" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la participacion inexistente", | |
"Persona inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/participaciones": { | |
"x-swagger-router-controller": "participaciones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "tramiteIdparticipacionesControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las participaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Participacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/participaciones/{id}": { | |
"x-swagger-router-controller": "participaciones.controller", | |
"get": { | |
"tags": [ | |
"Actividades de redes y gestion" | |
], | |
"summary": "Actividades de redes y gestion", | |
"description": "Membresías en asociaciones C-T y/o profecionales, tipo = 7 \nParticipación en redes temáticas o institucionales, tipo = 8 \nCoordinación de proyectos de cooperacion académica o C-T, tipo = 9 \n", | |
"operationId": "tramiteIdparticipacionesIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de las participaciones", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id de la participacion", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Participacion" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El id de la participacion debe ser un entero", | |
"El codigo del tramite no puede ser nulo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Id de la participacion inexistente", | |
"codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/premios": { | |
"x-swagger-router-controller": "premios.controller", | |
"get": { | |
"tags": [ | |
"Premios" | |
], | |
"summary": "Premios", | |
"description": "", | |
"operationId": "personaIdpremiosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso los Premios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Premio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona debe ser ingresado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Cuil de persona Inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/personas/{cuil}/premios/{id}": { | |
"x-swagger-router-controller": "premios.controller", | |
"get": { | |
"tags": [ | |
"Premios" | |
], | |
"summary": "Premios", | |
"description": "", | |
"operationId": "personaIdpremiosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "cuil", | |
"in": "path", | |
"description": "cuil de la persona que ingreso el premio Premios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del premio", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Premio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El cuil de la persona debe ser ingresado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Cuil de la persona inexistente", | |
"Id de premio inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/premios": { | |
"x-swagger-router-controller": "premios.controller", | |
"get": { | |
"tags": [ | |
"Premios" | |
], | |
"summary": "Premios", | |
"description": "", | |
"operationId": "tramiteIdpremiosControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los Premios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Premio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite debe ser ingresado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Codigo de tramite inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/tramites/{codigo}/premios/{id}": { | |
"x-swagger-router-controller": "premios.controller", | |
"get": { | |
"tags": [ | |
"Premios" | |
], | |
"summary": "Premios", | |
"description": "", | |
"operationId": "tramiteIdpremiosIdControllerGetId", | |
"produces": [ | |
"application/json" | |
], | |
"parameters": [ | |
{ | |
"name": "codigo", | |
"in": "path", | |
"description": "Código del trámite contenedor de los Premios", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "id", | |
"in": "path", | |
"description": "Id del premio", | |
"required": true, | |
"type": "integer" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "array", | |
"items": { | |
"$ref": "#/definitions/Premio" | |
} | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"El codigo del tramite debe ser ingresado" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Codigo de tramite inexistente", | |
"id de premio inexistente" | |
] | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/sigevafiles/{file_path}": { | |
"x-swagger-router-controller": "sigevafiles.controller", | |
"get": { | |
"tags": [ | |
"Sigeva Files" | |
], | |
"summary": "Sigeva Files", | |
"description": "", | |
"operationId": "sigevafilesRouteControllerGetId", | |
"produces": [ | |
"application/pdf" | |
], | |
"parameters": [ | |
{ | |
"name": "file_path", | |
"in": "path", | |
"description": "", | |
"required": true, | |
"type": "string" | |
}, | |
{ | |
"name": "page", | |
"in": "query", | |
"description": "Página a mostrar", | |
"required": false, | |
"type": "integer" | |
}, | |
{ | |
"name": "limit", | |
"in": "query", | |
"description": "Cantidad de registros a mostrar", | |
"required": false, | |
"type": "integer" | |
} | |
], | |
"responses": { | |
"200": { | |
"description": "OK", | |
"schema": { | |
"type": "file" | |
} | |
}, | |
"400": { | |
"description": "Bad Request.", | |
"schema": { | |
"type": "string", | |
"enum": [ | |
"Debe pasar la ruta del archivo" | |
] | |
} | |
}, | |
"404": { | |
"description": "Not Found.", | |
"schema": { | |
"$ref": "#/definitions/responseStatus" | |
} | |
}, | |
"500": { | |
"description": "Internal server Error." | |
} | |
} | |
} | |
}, | |
"/swagger": { | |
"x-swagger-pipe": "swagger_raw" | |
} | |
}, | |
"definitions": { | |
"GenericObject": { | |
"type": "object" | |
}, | |
"Tramite": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"codigo": { | |
"type": "string" | |
}, | |
"estado": { | |
"type": "string" | |
}, | |
"convocatoria": { | |
"type": "string" | |
}, | |
"postulante": { | |
"type": "string" | |
}, | |
"gran_area": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"disciplina_primaria": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"disciplina_secundaria": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"disciplina_desagregada_a": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"disciplina_desagregada_b": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_aplicacion_a": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_aplicacion_b": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"especialidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_investigacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"resumen_investigacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"palabras_clave": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_investigacion_ingles": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"palabras_clave_ingles": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"aspectos_eticos": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"etico_seguridad": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"clinico_quirurgico_basico": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"diagnostico_imagenes_radiacion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"epidemiologico_social_psico": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"equipamiento_medico": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"estudio_comunidad_aborigen": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"farmacologico_tecnologico": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"historia_clinica": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"muestra_biologica": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"informe_comite_lugar": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"seguridad": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"advertencias_o_trabajos_diferenciados": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"campanas_de_extraccion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"capacitacion_en_prevencion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"comite_de_seguridad_o_bioseguridad": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"expuesto_a_riesgos_fisicos": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"inmunizacion_o_vacunacion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"matriculado_en_higiene_y_seguridad": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"nivel_bioseguridad": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"tipo_proyecto_nivel_bioseguridad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"riesgo_biologico_comite_seguridad": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"sistema_de_gestion_de_residuos": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"sustancias_quimicas": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"sustancias_quimicas_desc": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tareas_de_campo": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"metros_cuadrados": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"cantidad_personas": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"recusacion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"recursos_financieros": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"Miembro": { | |
"type": "object", | |
"properties": { | |
"nombre_apellido": { | |
"type": "string" | |
}, | |
"cuil": { | |
"type": "string" | |
}, | |
"fecha_nacimiento": { | |
"type": "string" | |
}, | |
"rol": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porcentaje_dedicacion": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"lugar_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Persona": { | |
"type": "object", | |
"properties": { | |
"persona_id": { | |
"type": "integer" | |
}, | |
"nombre": { | |
"type": "string" | |
}, | |
"apellido": { | |
"type": "string" | |
}, | |
"apellido_casada": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"sexo": { | |
"type": "string" | |
}, | |
"estado_civil": { | |
"type": "string" | |
}, | |
"cantidad_hijos": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"nacionalidad": { | |
"type": "string" | |
}, | |
"condicion_nacionalidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_documento": { | |
"type": "string" | |
}, | |
"pais_emision_pasaporte": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"numero_documento": { | |
"type": "string" | |
}, | |
"cuil": { | |
"type": "string" | |
}, | |
"pais_nacimiento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"provincia_nacimiento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"partido_nacimiento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_nacimiento": { | |
"type": "string" | |
}, | |
"informacion_adicional": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"calle_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"numero_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"piso_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"departamento_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"provincia_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"partido_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"localidad_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"codigo_postal_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"telefono_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"email_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"casilla_postal_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fax_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"sitio_web_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"celular_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"lugar_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"calle_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"numero_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"piso_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"dpto_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"provincia_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"partido_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"localidad_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"codigo_postal_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"telefono_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"email_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"casilla_postal_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fax_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"sitio_web_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"celular_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Experticia": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"resumen": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_disciplinar": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"palabra_clave_español": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"palabra_clave_ingles": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"Premio": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"premio": { | |
"type": "string" | |
}, | |
"categoria": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_premio": { | |
"type": "string" | |
}, | |
"alcance_nacional": { | |
"type": "integer" | |
}, | |
"alcance_internacional": { | |
"type": "integer" | |
}, | |
"anio": { | |
"type": "integer" | |
}, | |
"organizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_disciplinar": { | |
"type": "string" | |
} | |
} | |
}, | |
"Publicacion": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"tipo_produccion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"idioma": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais_edicion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"ciudad_edicion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"publicado": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"editorial": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"url": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"anio_publicacion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"mes_publicacion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"isbn_issn": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"referato": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"articulo": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"volumen": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tomo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"numero": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"revista": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"otra_revista": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pagina_inicial": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"pagina_final": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"doi": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"libro": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"cantidad_volumenes": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"total_paginas": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"partelibro": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_libro": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pagina_inicial": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"pagina_final": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"volumen": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tomo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"numero": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"total_paginas": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"congreso": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_publicacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_revista": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"reunion_cientifica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_reunion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"alcance_internacional": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"alcance_nacional": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"pais_evento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"ciudad_evento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"mes_reunion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"anio_reunion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"institucion_organizadora": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"tesis": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"grado_academico": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_obtenido": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"institucion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_defensa": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"apellido_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"cuil_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"apellido_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"cuil_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"otra": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"total_paginas": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"tipo_otra_produccion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"otro_tipo_otra_produccion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"informe_tecnico": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_informe": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"caracteristicas": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_produccion_tecnologica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_naturaleza_produccion_tecnologica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"disciplina": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pagina_inicial": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"pagina_final": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"porc_participacion_autoria": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"moneda": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"monto": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"fecha_inicio": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_fin": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"trabajo_confidencial": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"destinatario": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_institucion_financiadora": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porc_financiado_institucion": { | |
"type": [ | |
"null", | |
"number" | |
] | |
} | |
} | |
}, | |
"medios_difusion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"autores": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"editores_compiladores_organizadores": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"palabras_clave": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"es_autor": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"es_editor_compilador": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"es_revisor": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"resumen": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_disciplinar": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"link_archivo_fulltext": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Desarrollo": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_produccion": { | |
"type": "string" | |
}, | |
"anio_referencia": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"titulo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_desarrollos": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"descripcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"web": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_disciplinar": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_aplicacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"especialidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"palabra_clave": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"autores": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"tipo_funcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porc_participacion_autoria": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"es_financiamineto": { | |
"type": "integer" | |
}, | |
"es_transferencia": { | |
"type": "integer" | |
}, | |
"vinculacion_transferencia": { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"anio_desde": { | |
"type": "string" | |
}, | |
"anio_hasta": { | |
"type": "string" | |
}, | |
"tipo_forma_transferencia": { | |
"type": "string" | |
}, | |
"descripcion": { | |
"type": "string" | |
}, | |
"link_archivo": { | |
"type": "string" | |
} | |
} | |
} | |
}, | |
"moneda": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"monto": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"organizacion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"link_archivo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Evaluacion": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_actividad_evaluacion": { | |
"type": "string" | |
}, | |
"otro_tipo_evaluacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"anio_inicio": { | |
"type": "number" | |
}, | |
"anio_fin": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"institucion_convocante": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"ciudad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"rol_evaluador": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_personal_evaluado": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"eissn_revista": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"issn_revista": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_revista": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_evaluacion_institucional": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_proyecto": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"ambito_institucional": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"descripcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_funcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"observaciones": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Cargo": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_cargo": { | |
"type": "string" | |
}, | |
"fecha_inicio": { | |
"type": "string" | |
}, | |
"fecha_fin": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"institucion": { | |
"type": "string" | |
}, | |
"grupo_cargo": { | |
"type": "string" | |
}, | |
"cargo": { | |
"type": "string" | |
}, | |
"tipo_dedicacion_horaria_semanal": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"categoria": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"gestion_institucional": { | |
"type": "object", | |
"properties": { | |
"funcion_desempeñada": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"basica_media": { | |
"type": "object", | |
"properties": { | |
"sistema_educacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"curso": { | |
"type": "object", | |
"properties": { | |
"carga_horaria_total": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"terciario": { | |
"type": "object", | |
"properties": { | |
"denominacion_carrera": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_formacion_academica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"superior": { | |
"type": "object", | |
"properties": { | |
"tipo_honorarios": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"dedicacion_horaria": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"condicion_docente": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"es_investigacion_desarrollo": { | |
"type": [ | |
"null", | |
"number" | |
] | |
} | |
} | |
}, | |
"actividad_curricular_profesor": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"grado_academico_actividades": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"Formacion": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_formacion": { | |
"type": "string" | |
}, | |
"situacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_inicio": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_fin": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"academica": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"denominacion_carrera": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_intermedio": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"denominacion_titulo_intermedio": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"resolucion_acreditacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo_tesina": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porcentaje_avance_tesis": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"apellido_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"apellido_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"beca_posgrado": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"salud": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_formacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"especialidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"certificado_esp": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"anio_certificacion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"beca_residencia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"posdoctoral": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"titulo_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"apellido_dir_anfitrion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre_dir_anfitrion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"apellido_codir_anfitrion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre_codir_anfitrion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"beca_posdoctorado": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"curso": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"carga_horaria": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"certificacion_final": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"idioma": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"idioma": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"dominio": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"certificado": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"institucion_emisora": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"anio_obtencion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"organizaciones": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"organizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_organizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"areas_conocimiento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"especialidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"observaciones": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Rrhhformacion": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_formacion_rrhh": { | |
"type": "string" | |
}, | |
"anio_desde": { | |
"type": "integer" | |
}, | |
"anio_hasta": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"institucion_trabajo_otorgante": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre": { | |
"type": "string" | |
}, | |
"apellido": { | |
"type": "string" | |
}, | |
"funcion_desempeñada": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_tarea": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"becario": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"organizacion_financiadora": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_beca": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"tesista": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_trabajo_dirijido": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"calificacion_obtenida": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"pasante": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"grado_academico": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_ambito_institucional": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tema_plan_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"carrera": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"categoria": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"otro_cargo_funcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Extension": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_extension": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion_actividad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_inicio": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_fin": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"funcion_desempeñada": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"descripcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"institucion_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_destinatario": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"tipo_fuente_financiamiento": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"tipo_extensionismo": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"ambito_extension": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"medio_divulgacion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_medio_divulgacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"medio_divulgacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"lugar_realizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"participacion_periodica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
} | |
} | |
}, | |
"Servicio": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_produccion": { | |
"type": "string" | |
}, | |
"denominacion": { | |
"type": "string" | |
}, | |
"tipo_servicio": { | |
"type": "string" | |
}, | |
"tipo_finalidad": { | |
"type": "string" | |
}, | |
"fecha_inicio": { | |
"type": "string" | |
}, | |
"fecha_fin": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_modalidad": { | |
"type": "string" | |
}, | |
"descripcion": { | |
"type": "string" | |
}, | |
"campo_disciplinar": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_aplicacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"especialidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"palabra_clave": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"moneda": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"monto": { | |
"type": [ | |
"null", | |
"number" | |
] | |
}, | |
"entidad_participante": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"entidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"ejecuta": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"evalua": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porcentaje_financia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"prestadores": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"funcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porc_participacion_autoria": { | |
"type": "number" | |
}, | |
"modalidad_vinculacion": { | |
"type": "string" | |
}, | |
"destinatario": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"certificado_denominacion_anio": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"link_archivo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Financiamiento": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_financiamiento": { | |
"type": "string" | |
}, | |
"tipo_actividad_investigacion_desarrollo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"titulo": { | |
"type": "string" | |
}, | |
"tipo_proyecto": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"codigo_proyecto": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_desde": { | |
"type": "string" | |
}, | |
"fecha_hasta": { | |
"type": "string" | |
}, | |
"descripcion": { | |
"type": "string" | |
}, | |
"campo_aplicacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_disciplinar": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"especialidad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"palabra_clave": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"moneda": { | |
"type": "string" | |
}, | |
"monto": { | |
"type": "number" | |
}, | |
"medio_divulgacion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"organizaciones": { | |
"type": "array", | |
"items": { | |
"type": "object", | |
"properties": { | |
"organizacion": { | |
"type": "string" | |
}, | |
"adopta": { | |
"type": "string" | |
}, | |
"demanda": { | |
"type": "string" | |
}, | |
"ejecuta": { | |
"type": "string" | |
}, | |
"evalua": { | |
"type": "string" | |
}, | |
"promueve": { | |
"type": "string" | |
}, | |
"procentaje_financia": { | |
"type": "string" | |
} | |
} | |
} | |
}, | |
"nombre_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"apellido_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"cuil_director": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"nombre_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"apellido_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"cuil_codirector": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_funcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_inicio_participacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_fin_participacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"link_archivo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Actividad": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_actividad": { | |
"type": "string" | |
}, | |
"otro_tipo_actividad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_desde": { | |
"type": "string" | |
}, | |
"fecha_hasta": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"funcion_desempeñada": { | |
"type": "string" | |
}, | |
"descripcion_tareas": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"actividades_tareas_realizadas": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"otras_actividades_tareas_realizadas": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"sistema_alta_complejidad": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_sistema_actividad": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"otro_tipo_sistema_actividad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion_actividad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"actividad_vinculada_con_si": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"denominacion_sistema_informacion_red": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"alcance_internacional": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"alcance_nacional": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"ejercicio_profesion": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"area": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"ambito_desempeño": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"provincia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"producto": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_producto": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"otro_tipo_producto": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion_producto": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion_actividad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"descripcion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"destinatario_produccion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"pasantia": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tema_plan_trabajo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"director_nombre": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"director_apellido": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"organizaciones": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"organizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"motivo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"ejecuta": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porcentaje_financia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"areas_conocimiento": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"Antecedente": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_actividad": { | |
"type": "string" | |
}, | |
"denominacion_actividad": { | |
"type": "string" | |
}, | |
"fecha_desde": { | |
"type": "string" | |
}, | |
"fecha_hasta": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"actividades_objectivo_red": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"otro_tipo_objetivo_red": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"otro_tipo_actividades": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"descripcion_participacion_redes": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_modalidad_admision": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"otro_tipo_modalidad_admision": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion_actividad_membresias": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion_actividad_coordinacion_proyectos": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"organizaciones": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"organizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"motivo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"porcentaje_financia": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"areas_conocimiento": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"alcance_internacional": { | |
"type": "integer" | |
}, | |
"alcance_nacional": { | |
"type": "integer" | |
}, | |
"informacion_adicional": { | |
"type": "string" | |
} | |
} | |
}, | |
"Beca": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"fecha_desde": { | |
"type": "string" | |
}, | |
"fecha_hasta": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_beca": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"denominacion_beca": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_tarea": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"organizacion_trabajo": { | |
"type": "string" | |
}, | |
"organizacion_financiadora": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"director_nombre": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"director_apellido": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"codirector_nombre": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"codirector_apellido": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"observacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"financia_postgrado": { | |
"type": "integer" | |
}, | |
"porcentaje_financia": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"Participacion": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"evento": { | |
"type": "string" | |
}, | |
"tipo_evento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"alcance_internacional": { | |
"type": "integer" | |
}, | |
"alcance_nacional": { | |
"type": "integer" | |
}, | |
"pais": { | |
"type": "string" | |
}, | |
"ciudad": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"anio": { | |
"type": "integer" | |
}, | |
"modo_participacion": { | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"otro_modo_participacion": { | |
"type": "string" | |
}, | |
"institucion_organizadora": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"info_adicional": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Artistica": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_produccion_artistica": { | |
"type": "string" | |
}, | |
"tipo_produccion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"titulo": { | |
"type": "string" | |
}, | |
"anio": { | |
"type": "integer" | |
}, | |
"url": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"medio_difusion": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"autores": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"musical_sonora": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_sonorizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"otro_tipo_sonorizacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_artistica_medio": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"literaria": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"grupo_artistica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_artistica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"divulgacion_publicacion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"divulgacion_representacion": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"tipo_artistica_publicacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"issn": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"isbn": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"idioma": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pagina_inicial": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"pagina_final": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
} | |
} | |
}, | |
"cantidad_presentaciones": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"presentaciones": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"object" | |
], | |
"properties": { | |
"tipo_presentacion_evento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"anio": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_presentacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"establecimiento": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
} | |
}, | |
"tiene_critica": { | |
"type": "integer" | |
}, | |
"medio_comunicacion_critica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"autor_critica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"anio_critica": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"pais_critica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"critica": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo_disciplinar": { | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
}, | |
"palabra_clave": { | |
"type": "array", | |
"items": { | |
"type": "string" | |
} | |
} | |
} | |
}, | |
"Propiedad": { | |
"type": "object", | |
"properties": { | |
"id": { | |
"type": "integer" | |
}, | |
"tipo_proteccion": { | |
"type": "string" | |
}, | |
"fecha_solicitud": { | |
"type": "string" | |
}, | |
"estado_propiedad": { | |
"type": "integer" | |
}, | |
"numero_solicitud": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"numero_registro": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_concesion_desde": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"fecha_concesion_hasta": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"pais": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_explotacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"tipo_etapa_explotacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"registro_cultivares": { | |
"type": [ | |
"null", | |
"integer" | |
] | |
}, | |
"titulares": { | |
"type": [ | |
"null", | |
"array" | |
], | |
"items": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
}, | |
"tipo_renovacion": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"link_archivo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
} | |
} | |
}, | |
"Dinamico": { | |
"type": "object", | |
"properties": { | |
"tramite_id": { | |
"type": "integer" | |
}, | |
"tramite_codigo": { | |
"type": "string" | |
}, | |
"tipo_campo": { | |
"type": [ | |
"null", | |
"string" | |
] | |
}, | |
"campo": { | |
"type": "string" | |
}, | |
"valor": { | |
"type": "string" | |
} | |
} | |
}, | |
"responseStatus": { | |
"type": "object", | |
"properties": { | |
"code": { | |
"type": "integer" | |
}, | |
"message": { | |
"type": "string" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment