Initial Commit

This commit is contained in:
Cloud User
2024-03-06 17:45:49 -06:00
commit 8986493161
250 changed files with 43078 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "array",
"items": {
"type": "object",
"required": [
"IdNivel",
"IdPeriodo",
"NombreNivel",
"NombrePeriodo"
],
"properties": {
"IdNivel": {
"type": "integer"
},
"IdPeriodo": {
"type": "integer"
},
"NombreNivel": {
"type": "string",
"enum": [
"LICENCIATURA",
"ESPECIALIDAD",
"MAESTRÍA",
"DOCTORADO",
"COORDINACIÓN DE EDUCACIÓN FÍSICA Y DEPORTES",
"COORDINACIÓN DE IMPULSO Y VIDA ESTUDIANTIL",
"COORDINACIÓN DE FORMACIÓN CULTURAL",
"VICERRECTORÍA DE BIENESTAR Y FORMACIÓN",
"CENTRO DE IDIOMAS"
]
},
"NombrePeriodo": {
"type": "string"
}
}
}
}