1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "$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"
- }
- }
- }
- }
|