An Event-Centric Knowledge Graph Approach for Public Administration as an Enabler for Data Analytics
Abstract
:1. Introduction and Motivation
2. Related Work
2.1. Event-Centric Knowledge Graphs
2.2. Core Entities in Public Administration
2.3. Public Administration Context and Needs for Event Modeling
3. An ECKG Model for Public Administration
- Level 1 is the core entity (Agent) that serves as the root of the tree. For PA, the core entity can be either a citizen, a business, or a PA entity.
- Level 2 includes the Events associated with a timestamp. The Events can be either high-level such as “life-event” or “business-event” (e.g., birth), or more fine-grained Events (e.g., birth registration) related to the provision of specific public services. The high-level life events may have one or more fine-grained sub-events.
- Level 3 contains PA domain knowledge bases including CPSV-AP-based public service descriptions. These knowledge bases are needed to add context to the ECKG.
4. Applying the Model: The Case of Greek Public Administration
4.1. The Public Service Provision Landscape in Greece
4.2. Case Study: Birth Life Event
- The core vocabularies of the European Union (http://data.europa.eu/m8g (accessed on 25 December 2023)) (prefix cv:) which define concepts related to people (cv:Person), businesses, (cv:LegalEntity) and life events (cv:LifeEvent);
- The Core Public Service Vocabulary [47] (prefix cpsv:) of the European Union which defines concepts regarding public services (cpsv:PublicService) and their variations;
- The SEM vocabulary [18] (prefix sem:) which defines concepts related to events (sem:Event, sem:hasSubEvent, sem:hasTimeStamp.)
Listing 1. CPSV-AP-based RDF/TTL code of a public service knowledge base (partial). |
ex:BirthCertificatePS a cpsv:PublicService; cv:hasCompetentAuthority ex:MinistryOfInterior; cv:hasChannel ex:RegistryOfficePhysical, ex:CSCphysical, ex:Govgr,ex:CSConline; cv:hasInput ex:IDcard, ex:Authorization; cv:produces ex:BirthCertificate. ex:BirthAllowancePS a cpsv:PublicService; cv:hasCompetentAuthority ex:MinistryOfLaborAndSocialSecurity; cv:hasChannel ex:BirthAllowancesPhysicalOffice, ex:Govgr; cv:hasInput ex:BirthCertificate, ex:IDcard, ex:MaritalStatusCertificate, ex:ResidencePermit, ex:NotarialDeedChildRecognition, ex:IBANcertificate; cpsv:produces "2000"^^xsd:integer. ex:MonthlyChildAllowancePS a cpsv:PublicService; cv:hasCompetentAuthority ex:MinistryOfLaborAndSocialSecurity; cv:hasChannel ex:Govgr; cv:hasInput ex:MaritalStatusCertificate, ex:StudyCertificate, ex:ResidencePermit, ex:DisabilityCertificate; cpsv:produces "28"^^xsd:integer, "42"^^xsd:integer, "70"^^xsd:integer. ex:MinistryOfInterior a cv:PublicOrganisation. ex:MinistryOfLaborAndSocialSecurity a cv:PublicOrganisation. ex:RegistryOfficePhysical a cv:Channel. ex:CSCphysical a cv:Channel. ex:Govgr a cv:Channel. ex:CSConline a cv:Channel. ex:IDcard a cv:Evidence. ex:Authorization a cv:Evidence. ex:BirthCertificate a cv:Evidence, cv:Output. ex:MaritalStatusCertificate a cv:Evidence. ex:ResidencePermit a cv:Evidence. ex:NotarialDeedChildRecognition a cv:Evidence. ex:IBANcertificate a cv:Evidence. ex:StudyCertificate a cv:Evidence. ex:DisabilityCertificate a cv:Evidence. |
Listing 2. RDF/TTL code for the scenario using the proposed ECKG. |
ex:Olivia a cv:Person; ex:participatesIn ex:birth. ex:birth a cv:LifeEvent; sem:hasTimeStamp "2023-10-10T09:30:00"^^xsd:dateTime; dct:type ex:HavingAChild; sem:hasSubEvent ex:BirthCertificateEvent, ex:BirthAllowanceEvent, ex:ChildAllowanceEvent. ex:BirthCertificateEvent a sem:Event; sem:hasTimeStamp "2023-10-12T12:30:00"^^xsd:dateTime; ex:isResolvedBy ex:BirthCertificatePS; ex:includeInput ex:IDcard; ex:includeChannel ex:RegistryOfficePhysical. ex:BirthAllowanceEvent a sem:Event; sem:hasTimeStamp "2023-10-13T11:20:00"^^xsd:dateTime; ex:isResolvedBy ex:BirthAllowancePS; ex:includeChannel ex:Govgr; ex:includeInput ex:BirthCertificate, ex:IDcard, ex:IBANcertificate, ex:NotarialDeedChildRecognition ; ex:includeOutput "2000"^^xsd:integer. ex:ChildAllowanceEvent a sem:Event; sem:hasTimeStamp "2023-10-30T11:20:00"^^xsd:dateTime; ex:isResolvedBy ex:MonthlyChildAllowancePS; ex:includeChannel ex:Govgr; ex:includeOutput "42"^^xsd:integer. |
4.3. Querying and Data Analytics
Listing 3. A 360-degree-view of a citizen. |
PREFIX ex: <http://www.exampe.org/> PREFIX sem: <http://semanticweb.cs.vu.nl/2009/11/sem/> select ?event, ?time, ?input, ?output, ?channel where { <http://www.exampe.org/Alice> ex:faces ?le. ?le sem:hasSubEvent ?event. ?event sem:hasTimeStamp ?time. ?event ex:includeInput ?input. ?event ex:includeOutput ?output. ?event ex:includeChannel ?channel. } |
Listing 4. A 360-degree-view of a Public Organization. |
PREFIX ex: <http://www.exampe.org/> PREFIX sem: <http://semanticweb.cs.vu.nl/2009/11/sem/> PREFIX cv: <http://data.europa.eu/m8g/> select * where { ?event ex:isResolvedBy ?ps. ?ps cv:hasCompetentAuthority ex:MinistryOfLaborAndSocialSecurity. ?event sem:hasTimeStamp ?time. FILTER(?time >=’2022-01-01T00:00:00’^^xsd:dateTime && ?time <’2023-01-01T00:00:00’^^xsd:dateTime) } |
Listing 5. Total amount of birth allowances granted to children born outside of marriage in 2022 through gov.gr. |
PREFIX ex: <http://www.exampe.org/> PREFIX sem: <http://semanticweb.cs.vu.nl/2009/11/sem/> PREFIX cv: <http://data.europa.eu/m8g/> select SUM(?allowance) where { ?event ex:isResolvedBy ex:BirthdAllowancePS. ?event ex:includeChannel ex:Govgr. ?event ex:includeInput ex:NotarialDeedChildRecognition. ?event ex:includeOutput ?allowance. ?event sem:hasTimeStamp ?time. FILTER(?time >=’2022-01-01T00:00:00’^^xsd:dateTime && ?time <’2023-01-01T00:00:00’^^xsd:dateTime) } |
5. Discussion
6. Conclusions
Author Contributions
Funding
Data Availability Statement
Conflicts of Interest
References
- Natis, Y. The Gartner Strategic Trends for Application Platforms and Architecture. 2023. Available online: https://webinar.gartner.com/451244/agenda/ (accessed on 25 December 2023).
- Gerontas, A.; Peristeras, V.; Tambouris, E.; Kaliva, E.; Magnisalis, I.; Tarabanis, K. Public Service Models: A Systematic Literature Review and Synthesis. IEEE Trans. Emerg. Top. Comput. 2021, 9, 637–648. [Google Scholar] [CrossRef]
- Rospocher, M.; van Erp, M.; Vossen, P.; Fokkens, A.; Aldabe, I.; Rigau, G.; Soroa, A.; Ploeger, T.; Bogaard, T. Building event-centric knowledge graphs from news. J. Web Semant. 2016, 37–38, 132–151. [Google Scholar] [CrossRef]
- Cyganiak, R.; Wood, D.; Lanthaler, M. RDF 1.1 Concepts and Abstract Syntax. W3C Recommendation. 2014. Available online: https://www.w3.org/TR/rdf11-concepts/ (accessed on 25 December 2023).
- SPARQL 1.1 Overview. W3C Recommendation. 2012. Available online: https://www.w3.org/TR/sparql11-overview/ (accessed on 25 December 2023).
- Bizer, C.; Lehmann, J.; Kobilarov, G.; Auer, S.; Becker, C.; Cyganiak, R.; Hellmann, S. DBpedia—A crystallization point for the Web of Data. J. Web Semant. 2009, 7, 154–165. [Google Scholar] [CrossRef]
- Suchanek, F.M.; Kasneci, G.; Weikum, G. Yago: A Core of Semantic Knowledge. In Proceedings of the 16th International Conference on World Wide Web, WWW’07, Banff, AB, Canada, 8–12 May 2007; pp. 697–706. [Google Scholar] [CrossRef]
- Vrandečić, D.; Krötzsch, M. Wikidata: A free collaborative knowledgebase. Commun. ACM 2014, 57, 78–85. [Google Scholar] [CrossRef]
- Raimond, Y.; Abdallah, S. The Event Ontology. 2007. Available online: http://motools.sf.net/event/event.html (accessed on 25 December 2023).
- Sun, J.Q. An OWL Ontology of Time and Events. Ph.D. Thesis, Poltecnico di Milano, Milan, Italy, 2011. [Google Scholar]
- Lagoze, C.; Hunter, J. The ABC Ontology and Model. In Proceedings of the International Conference on Dublin Core and Metadata Applications 2001, DCMI’01, Tokyo, Japan, 22–26 October 2001; National Institute of Informatics: Tokyo, Japan, 2001; pp. 160–176. [Google Scholar]
- Ruotsalo, T.; Hyvönen, E. An Event-Based Approach for Semantic Metadata Interoperability. In Proceedings of the The Semantic Web, Busan, Republic of Korea, 11–15 November 2007; Aberer, K., Choi, K.S., Noy, N., Allemang, D., Lee, K.I., Nixon, L., Golbeck, J., Mika, P., Maynard, D., Mizoguchi, R., et al., Eds.; Springer: Berlin/Heidelberg, Germany, 2007; pp. 409–422. [Google Scholar]
- Guizzardi, G.; Wagner, G.; de Almeida Falbo, R.; Guizzardi, R.S.; Almeida, J.P.A. Towards ontological foundations for the conceptual modeling of events. In Proceedings of the Conceptual Modeling: 32th International Conference, ER 2013, Proceedings 32, Hongkong, China, 11–13 November 2013; Springer: Berlin/Heidelberg, Germany, 2013; pp. 327–341. [Google Scholar]
- Guizzardi, G.; Guarino, N.; Almeida, J.P.A. Ontological Considerations About the Representation of Events and Endurants in Business Models. In Proceedings of the Business Process Management, Rio de Janeiro, Brazil, 18–22 September 2016; La Rosa, M., Loos, P., Pastor, O., Eds.; Springer: Cham, Switzerland, 2016; pp. 20–36. [Google Scholar]
- Core Vocabularies Working Group. Core Public Event Vocabulary. 2023. Available online: https://semiceu.github.io/Core-Public-Event-Vocabulary/releases/1.0.0/ (accessed on 25 December 2023).
- Scherp, A.; Franz, T.; Saathoff, C.; Staab, S. F–a Model of Events Based on the Foundational Ontology Dolce+DnS Ultralight. In Proceedings of the 5th International Conference on Knowledge Capture, K-CAP’09, New York, NY, USA, 1–4 September 2009; pp. 137–144. [Google Scholar] [CrossRef]
- Shaw, R.; Troncy, R.; Hardman, L. LODE: Linking Open Descriptions of Events. In Proceedings of the The Semantic Web, Shanghai, China, 6–9 December 2009; Gómez-Pérez, A., Yu, Y., Ding, Y., Eds.; Springer: Berlin/Heidelberg, Germany, 2009; pp. 153–167. [Google Scholar]
- Van Hage, W.R.; Malaisé, V.; Segers, R.; Hollink, L.; Schreiber, G. Design and use of the Simple Event Model (SEM). J. Web Semant. 2011, 9, 128–136. [Google Scholar] [CrossRef]
- Schema.org Community Group. Event—Schema.org Type. 2023. Available online: https://schema.org/Event (accessed on 25 December 2023).
- Bekiari, C.; Bruseker, G.; Doerr, M.; Ore, C.E.; Stead, S.; Velios, A. Definition of the CIDOC Conceptual Reference Model. 2021. Available online: https://cidoc-crm.org/sites/default/files/cidoc_crm_v.7.1.1_0.pdf (accessed on 25 December 2023).
- Holland, K.; Steidl, M.; Meltzer, S. NewsML-G2 2.31 Specification. 2022. Available online: https://iptc.org/std/NewsML-G2/2.31/specification/NewsML-G2-2.31-specification.html (accessed on 25 December 2023).
- The Open Group. TOGAF v9.2 Standard—Content Metamodel. 2018. Available online: https://pubs.opengroup.org/architecture/togaf9-doc/arch/chap30.html (accessed on 25 December 2023).
- Zeginis, D.; Tarabanis, K. Towards an event-centric knowledge graph approach for public administration. In Proceedings of the 2022 IEEE 24th Conference on Business Informatics (CBI), Amsterdam, The Netherlands, 15–17 June 2022; Volume 2, pp. 25–32. [Google Scholar] [CrossRef]
- Bourmpoulias, S.; Zeginis, D.; Tarabanis, K. An Entity Event Knowledge Graph for Human Resources Management in Public Administration: The case of education personnel. In Proceedings of the 2023 IEEE 25th Conference on Business Informatics (CBI), Prague, Czech Republic, 21–23 June 2023; pp. 1–8. [Google Scholar] [CrossRef]
- Westermann, U.; Jain, R. Toward a Common Event Model for Multimedia Applications. IEEE MultiMedia 2007, 14, 19–29. [Google Scholar] [CrossRef]
- Bajracharya, R.; Wallace, R.; Aasman, J.; Mirhaji, P. Entity Event Knowledge Graph for Powerful Health Informatics. In Proceedings of the 2022 IEEE 10th International Conference on Healthcare Informatics (ICHI), Rochester, MN, USA, 11–14 June 2022; pp. 456–460. [Google Scholar] [CrossRef]
- Asman, J. Entity Event Knowledge Graphs for Data Centric Organizations. 2020. Available online: https://allegrograph.com/wp-content/uploads/2020/05/Entity-Event-Knowledge-Graphs-v5112020.pdf (accessed on 25 December 2023).
- Gottschalk, S.; Demidova, E. EventKG: A Multilingual Event-Centric Temporal Knowledge Graph. In Proceedings of the Semantic Web, Crete, Greece, 3–7 June 2018; pp. 272–287. [Google Scholar]
- Abdollahi, S.; Gottschalk, S.; Demidova, E. EventKG+ Click: A dataset of language-specific event-centric user interaction traces. arXiv 2020, arXiv:2010.12370. [Google Scholar]
- Gottschalk, S.; Kacupaj, E.; Abdollahi, S.; Alves, D.; Amaral, G.; Koutsiana, E.; Kuculo, T.; Major, D.; Mello, C.; Cheema, G.S.; et al. OEKG: The Open Event Knowledge Graph. In Proceedings of the 2nd International Workshop on Cross-Lingual Event-Centric Open Analytics Co-Located with the 30th the Web Conference (WWW 2021), Ljubljana, Slovenia (Online), 12 April 2021; pp. 61–75. [Google Scholar]
- Wu, J.; Zhu, X.; Zhang, C.; Hu, Z. Event-centric Tourism Knowledge Graph—A Case Study of Hainan. In Proceedings of the Knowledge Science, Engineering and Management, Hangzhou, China, 28–30 August 2020; Li, G., Shen, H.T., Yuan, Y., Wang, X., Liu, H., Zhao, X., Eds.; Springer: Cham, Switzerland, 2020; pp. 3–15. [Google Scholar]
- Zhang, H.; Liu, X.; Pan, H.; Song, Y.; Leung, C.W.K. ASER: A large-scale eventuality knowledge graph. In Proceedings of the Web Conference 2020, Taipei, Taiwan, 20–24 April 2020; pp. 201–211. [Google Scholar]
- Li, Z.; Zhao, S.; Ding, X.; Liu, T. EEG: Knowledge Base for Event Evolutionary Principles and Patterns. In Proceedings of the Social Media Processing, Beijing, China, 14–17 September 2017; Cheng, X., Ma, W., Liu, H., Shen, H., Feng, S., Xie, X., Eds.; Springer: Singapore, 2017; pp. 40–52. [Google Scholar]
- Ma, M.D.; Sun, J.; Yang, M.; Huang, K.H.; Wen, N.; Singh, S.; Han, R.; Peng, N. Eventplus: A temporal event understanding pipeline. arXiv 2021, arXiv:2101.04922. [Google Scholar]
- Ning, Q.; Zhou, B.; Feng, Z.; Peng, H.; Roth, D. CogCompTime: A Tool for Understanding Time in Natural Language. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing: System Demonstrations, Brussels, Belgium, 31 October–4 November 2018; Blanco, E., Lu, W., Eds.; pp. 72–77. [Google Scholar] [CrossRef]
- Yadav, P.; Curry, E. VEKG: Video Event Knowledge Graph to Represent Video Streams for Complex Event Pattern Matching. In Proceedings of the 2019 First International Conference on Graph Computing (GC), Laguna Hills, CA, USA, 25–27 September 2019; pp. 13–20. [Google Scholar] [CrossRef]
- Ge, X.; Yang, Y.; Chen, J.; Li, W.; Huang, Z.; Zhang, W.; Peng, L. Disaster Prediction Knowledge Graph Based on Multi-Source Spatio-Temporal Information. Remote Sens. 2022, 14, 1214. [Google Scholar] [CrossRef]
- Jin, W.; Qu, M.; Jin, X.; Ren, X. Recurrent Event Network: Autoregressive Structure Inferenceover Temporal Knowledge Graphs. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing (EMNLP), Online, 16–20 November 2020; Webber, B., Cohn, T., He, Y., Liu, Y., Eds.; pp. 6669–6683. [Google Scholar] [CrossRef]
- Li, Z.; Jin, X.; Guan, S.; Li, W.; Guo, J.; Wang, Y.; Cheng, X. Search from History and Reason for Future: Two-stage Reasoning on Temporal Knowledge Graphs. arXiv 2021, arXiv:2106.00327. [Google Scholar]
- Li, Z.; Ding, X.; Liu, T. Constructing Narrative Event Evolutionary Graph for Script Event Prediction. arXiv 2018, arXiv:1805.05081. [Google Scholar]
- Fu, X.; Jiang, X.; Qi, Y.; Xu, M.; Song, Y.; Zhang, J.; Wu, X. An Event-Centric Prediction System for COVID-19. In Proceedings of the 2020 IEEE International Conference on Knowledge Graph (ICKG), Nanjing, China, 9–11 August 2020; pp. 195–202. [Google Scholar] [CrossRef]
- Gottschalk, S.; Demidova, E. EventKG+TL: Creating Cross-Lingual Timelines from an Event-Centric Knowledge Graph. In Proceedings of the Semantic Web: ESWC 2018 Satellite Events, Crete, Greece, 3–7 June 2018; Gangemi, A., Gentile, A.L., Nuzzolese, A.G., Rudolph, S., Maleshkova, M., Paulheim, H., Pan, J.Z., Alam, M., Eds.; Springer: Cham, Switzerland, 2018; pp. 164–169. [Google Scholar]
- Souza Costa, T.; Gottschalk, S.; Demidova, E. Event-QA: A Dataset for Event-Centric Question Answering over Knowledge Graphs. In Proceedings of the 29th ACM International Conference on Information Knowledge Management, New York, NY, USA, 19–23 October 2020; pp. 3157–3164. [Google Scholar]
- Kavadias, G.; Tambouris, E. GovML: A Markup Language for Describing Public Services and Life Events. In Proceedings of the Knowledge Management in Electronic Government, Rhodes, Greece, 26–28 May 2003; Wimmer, M.A., Ed.; Springer: Berlin/Heidelberg, Germany, 2003; pp. 106–115. [Google Scholar]
- Vassilakis, C.; Lepouras, G. Ontology for E-government public services. In Encyclopedia of E-Commerce, E-Government, and Mobile Commerce; IGI Global: Hershey, PA, USA, 2006; pp. 865–870. [Google Scholar]
- Glassey, O. Developing a one-stop government data model. Gov. Inf. Q. 2004, 21, 156–169. [Google Scholar] [CrossRef]
- Core Public Service Vocabulary Working Group. Core Public Service Vocabulary Application Profile (CPSV-AP). 2022. Available online: https://semiceu.github.io/CPSV-AP/releases/3.1.0/ (accessed on 25 December 2023).
- DG-DIGIT/ISA-Programme, D02.02—Definition and Development of a Data Model for Description of the Services Related to Key Business Events; CPSV-AP Version 1.0. 2014. Available online: https://joinup.ec.europa.eu/sites/default/files/distribution/2015-07/d02.02_-_definition_and_development_of_a_data_model_for_description_of_the_services_related_to_kbe-v1.05.docx (accessed on 25 December 2023).
- Adams, N.; Fraser, J.; Macintosh, A.; McKay-Hubbard, A. Towards an ontology for electronic transaction services. Intell. Syst. Account. Financ. Manag. 2002, 11, 173–181. [Google Scholar] [CrossRef]
- Peristeras, V.; Tarabanis, K. Governance Enterprise Architecture (GEA): Domain Models for e-Governance. In Proceedings of the 6th International Conference on Electronic Commerce, Delft, The Netherlands, 25–27 October 2004. [Google Scholar] [CrossRef]
- Roberto, V.; Rowlatt, M.; Davies, R.; Gugliotta, A.; Cabral, L.; Domingue, J. A semantic web service-based architecture for the interoperability of e-government services. In Proceedings of the Web Information Systems Modeling Workshop (WISM 2005)/5th International Conference on Web Engineering (ICWE 2005), Sydney, Australia, 27–29 July 2005. [Google Scholar]
- Trochidis, I.; Tambouris, E.; Tarabanis, K. An Ontology for Modeling Life-Events. In Proceedings of the IEEE International Conference on Services Computing (SCC 2007), Salt Lake City, UT, USA, 9–13 July 2007; pp. 719–720. [Google Scholar] [CrossRef]
- Qian, R. Deliverable 3.1: Access-eGov Platform Architecture. The Access-eGov Project Consortium. 2006. Available online: https://intersoft.sk/access-egov/uploads/delivs_D3.1.pdf (accessed on 25 December 2023).
- Barone, D.; Viscusi, G.; Batini, C.; Naggar, P. A Repository of Services for the Government to Businesses Relationship. In Lecture Notes in Computer Science, Proceedings of the Next Generation Information Technologies and Systems, Kebbutz Sehfayim, Israel, 4–6 July 2006; Etzion, O., Kuflik, T., Motro, A., Eds.; Springer: Berlin/Heidelberg, Germany, 2006; pp. 47–58. [Google Scholar]
- Sourouni, A.M.; Lampathaki, F.; Mouzakitis, S.; Charalabidis, Y.; Askounis, D. Paving the Way to eGovernment Transformation: Interoperability Registry Infrastructure Development. In Electronic Government, Proceedings of the 7th International Conference, EGOV 2008, Torino, Italy, 31 August–5 September 2008; Wimmer, M.A., Scholl, H.J., Ferro, E., Eds.; Springer: Berlin/Heidelberg, Germany, 2008; pp. 340–351. [Google Scholar]
- Álvarez Sabucedo, L.M.; Anido Rifón, L.E.; Míguez Pérez, R.; Santos Gago, J.M. Providing standard-oriented data models and interfaces to eGovernment services: A semantic-driven approach. Comput. Stand. Interfaces 2009, 31, 1014–1027. [Google Scholar] [CrossRef]
- Tambouris, E.; Tarabanis, K. Understanding and scoping life events. Int. J. Electron. Gov. 2008, 1, 139–154. [Google Scholar] [CrossRef]
- Welby, B. The Impact of Digital Government on Citizen Well-Being. 2019. Available online: https://www.oecd-ilibrary.org/governance/the-impact-of-digital-government-on-citizen-well-being_24bac82f-en (accessed on 25 December 2023).
- Paşcalău, E.M. The Competences of Public Environmental Protection Authorities in Case of Natural Disasters. Perspect. Law Public Adm. 2022, 11, 111–124. [Google Scholar]
- Srebalová, M.; Peráček, T. Effective Public Administration as a Tool for Building Smart Cities: The Experience of the Slovak Republic. Laws 2022, 11, 67. [Google Scholar] [CrossRef]
- Handrlica, J. Two Faces of International Administrative Law. Jurid. Trib. 2019, 9, 363. [Google Scholar]
- Janssen, M.; Brous, P.; Estevez, E.; Barbosa, L.S.; Janowski, T. Data governance: Organizing data for trustworthy Artificial Intelligence. Gov. Inf. Q. 2020, 37, 101493. [Google Scholar] [CrossRef]
- Capgemini. Rising to the New Challenges of Transactional Services in the Public Sector; Capgemini: Hongkong, China, 2012. [Google Scholar]
- Stamatis, A.; Gerontas, A.; Dasyras, A.; Tambouris, E. Using Chatbots and Life Events to Provide Public Service Information. In Proceedings of the 13th International Conference on Theory and Practice of Electronic Governance (ICEGOV 2020), Athens, Greece, 23–25 September 2020; pp. 54–61. [Google Scholar] [CrossRef]
- Gerontas, A.; Zeginis, D.; Tambouris, E.; Tarabanis, K. Towards personalised public service co-creation using core vocabularies. In Proceedings of the 2021 6th South-East Europe Design Automation, Computer Engineering, Computer Networks and Social Media Conference, Preveza, Greece, 24–26 September 2021; pp. 1–7. [Google Scholar] [CrossRef]
- Antoniadis, P.; Tambouris, E. PassBot: A chatbot for providing information on Getting a Greek Passport. In Proceedings of the 14th International Conference on Theory and Practice of Electronic Governance, Athens, Greece, 6–8 October 2021. [Google Scholar]
- Gerontas, A.; Zeginis, D.; Promikyridis, R.; Androš, M.; Tambouris, E.; Cipan, V.; Tarabanis, K. Enhancing Core Public Service Vocabulary to Enable Public Service Personalization. Information 2022, 13, 225. [Google Scholar] [CrossRef]
Model | Structure | Domain | Agent | Time | Place | Event-Event Relations | Event Result |
---|---|---|---|---|---|---|---|
The Event Ontology [9,10] | Graph | cross-domain | ✓ (event starter/receiver) | ✓ | ✓ | ✓ (sub-event) | ✓ (product) |
ABC ontology [11] | Graph | cross-domain | ✓ | ✓ | ✓ | ✓ (sub event) | ✓ |
Event-Based Approach [12] | Graph | cross-domain | ✓ (agent—initiates, patient—undergoes, role—other) | ✓ | ✓ | ✓ | ✓ |
UFO-B [13,14] | Graph | cross-domain | ✓ (participation—role) | ✓ | ✓ | ✓ (has-part, causes, time relations e.g., precedes) | ✓ (situation before/after event) |
CPEV [15] | Graph | cross-domain | ✓ (participation—role) | ✓ | ✓ | ✓ (sub/parent event, previous/next event) | ✗ |
F–A model [16] | Graph | cross-domain | ✓ (role) | ✓ | ✓ | ✓ (included in, causality, correlation) | ✗ |
LODE [17] | Graph | cross-domain | ✓ (role) | ✓ | ✓ | ✓ (sub-event, has part) | ✗ |
SEM [18] | Graph | cross-domain | ✓ (actor, role) | ✓ | ✓ | ✓ (sub-event) | ✗ |
schema.org [19] | Graph | cross-domain | ✓ (various roles e.g., actor, attendee, contributor etc.) | ✓ | ✓ | ✓ (sub/super event) | ✗ |
CIDOC CRM [20] | Graph | Cultural heritage | ✓ | ✓ | ✓ | ✗ | ✗ |
EventsML [21] | Graph | News | ✓ | ✓ | ✓ | ✓ (broader/narrower) | ✗ |
TOGAF [22] | Graph | Enterprise Architecture | ✓ (actor, role) | ✗ | ✗ | ✗ | ✓ (product) |
ECKG PA [23] | Tree | Public Administration | ✓ | ✓ | ✓ | ✓ (sub-event) | ✓ (public service) |
HRM PA [24] | Tree | Public Administration | ✓ | ✓ | ✓ | ✓ (sub-event) | ✓ (agent state) |
Event Model Multimedia [25] | Graph | Multimedia | ✓ | ✓ | ✓ | ✓ (sub-event, causing event) | ✗ |
EEKG [26,27] | Tree | Health | ✓ | ✓ | ✗ | ✗ | ✗ |
Name | Domain | Base Model | Description |
---|---|---|---|
EventKG [28] | cross-domain | SEM [18] | Event-centric information extracted from Wikidata, DBpedia and YAGO |
EventKG+Click [29] | cross-domain | SEM [18] | EventKG plus information on user interactions with events, entities, and their relations derived from Wikipedia clickstream |
OEKG [30] | cross-domain | SEM [18] | A multi-domain open event knowledge graph (includes EventKG and EventKG+Click) |
ASER [32] | cross-domain | - | Includes Temporal, contingency, comparison, expansion, and co-occurrence relations between events |
Event-centric Hainan tourism KG [31] | Tourism | Extend SEM [18] | Temporal and spatial information of tourists’ trips |
Chinese travel domain event evolutionary graph [33] | Tourism | - | Includes Temporal relations between events |
Event-centric knowledge graph from news [3] | News | SEM [18] | The sources for news used are: WikiNews, FIFA WorldCup, Cars, and Airbus Corpus |
Public Administration Model | Citizen | Business | Public Administration | Life/Business Event |
---|---|---|---|---|
Governmental Markup Language (GovML) [44] | ✗ | ✗ | ✗ | ✓ |
SmartGov model [49] | ✓ | ✓ | ✗ | ✗ |
E-GOV Public Services Ontology (E-GOV PSO) [45] | ✓ | ✓ | ✗ | ✓ |
Switzerland Data Model for Public Administration (DMPA) [46] | ✓ | ✓ | ✓ | ✗ |
Governance Enterprise Architecture (GEA) [50] | ✓ | ✓ | ✗ | ✗ |
DIP model [51] | ✓ | ✗ | ✗ | ✓ |
OneStopGov model [52] | ✓ | ✗ | ✗ | ✓ |
Access-eGov model [53] | ✗ | ✗ | ✗ | ✓ |
Government to Businesses Model (G2BM) [54] | ✗ | ✓ | ✗ | ✗ |
eGovernment Knowledge Interoperability Ontology (eGKI) [55] | ✓ | ✓ | ✓ | ✗ |
Life Event Ontology (LEO) [56] | ✓ | ✗ | ✗ | ✓ |
Core Public Service Vocabulary (CPSV) [47,48] | ✗ | ✗ | ✓ | ✓ |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2024 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Zeginis, D.; Tarabanis, K. An Event-Centric Knowledge Graph Approach for Public Administration as an Enabler for Data Analytics. Computers 2024, 13, 17. https://doi.org/10.3390/computers13010017
Zeginis D, Tarabanis K. An Event-Centric Knowledge Graph Approach for Public Administration as an Enabler for Data Analytics. Computers. 2024; 13(1):17. https://doi.org/10.3390/computers13010017
Chicago/Turabian StyleZeginis, Dimitris, and Konstantinos Tarabanis. 2024. "An Event-Centric Knowledge Graph Approach for Public Administration as an Enabler for Data Analytics" Computers 13, no. 1: 17. https://doi.org/10.3390/computers13010017