{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "estado",
  "description": "Schema for estado reference table",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "nombre": {
        "type": "string",
        "description": "nombre field"
      },
      "dbNombreTablaSISPRO": {
        "type": "string",
        "description": "dbNombreTablaSISPRO field"
      },
      "dbNombreTabla": {
        "type": "string",
        "description": "dbNombreTabla field"
      },
      "urlTablaSISPRO": {
        "type": "string",
        "description": "urlTablaSISPRO field"
      },
      "fechaActualizacion": {
        "type": "string",
        "format": "date-time",
        "description": "fechaActualizacion field"
      },
      "id": {
        "type": "number",
        "description": "id field"
      },
      "estadoEntidad": {
        "type": "boolean",
        "description": "estadoEntidad field"
      }
    },
    "required": [
      "nombre",
      "dbNombreTablaSISPRO",
      "dbNombreTabla",
      "urlTablaSISPRO",
      "fechaActualizacion",
      "id",
      "estadoEntidad"
    ]
  }
}