periodo_v1.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "array",
  4. "items": {
  5. "type": "object",
  6. "required": [
  7. "IdNivel",
  8. "IdPeriodo",
  9. "NombreNivel",
  10. "NombrePeriodo"
  11. ],
  12. "properties": {
  13. "IdNivel": {
  14. "type": "integer"
  15. },
  16. "IdPeriodo": {
  17. "type": "integer"
  18. },
  19. "NombreNivel": {
  20. "type": "string",
  21. "enum": [
  22. "LICENCIATURA",
  23. "ESPECIALIDAD",
  24. "MAESTRÍA",
  25. "DOCTORADO",
  26. "COORDINACIÓN DE EDUCACIÓN FÍSICA Y DEPORTES",
  27. "COORDINACIÓN DE IMPULSO Y VIDA ESTUDIANTIL",
  28. "COORDINACIÓN DE FORMACIÓN CULTURAL",
  29. "VICERRECTORÍA DE BIENESTAR Y FORMACIÓN",
  30. "CENTRO DE IDIOMAS"
  31. ]
  32. },
  33. "NombrePeriodo": {
  34. "type": "string"
  35. }
  36. }
  37. }
  38. }